Home
last modified time | relevance | path

Searched full:ahead (Results 1 – 25 of 4102) sorted by relevance

12345678910>>...165

/aosp_15_r20/external/apache-commons-io/src/main/java/org/apache/commons/io/input/
H A DReadAheadInputStream.java36 …* Implements {@link InputStream} to asynchronously read ahead from an underlying input stream when…
37 …* buffer. It does so by maintaining two buffers: an active buffer and a read ahead buffer. The act…
38 …* read() call is issued. The read ahead buffer is used to asynchronously read from the underlying …
39 …* flip the two buffers so that we can start reading from the read ahead buffer without being block…
91 * Sets the executor service for the read-ahead thread.
93 * @param executorService the executor service for the read-ahead thread.
122 final Thread thread = new Thread(r, "commons-io-read-ahead"); in newDaemonThread()
168 // whether there is a read ahead task running,
181 * Constructs an instance with the specified buffer size and read-ahead threshold
193 * Constructs an instance with the specified buffer size and read-ahead threshold
[all …]
/aosp_15_r20/external/libyuv/source/
H A Dscale_neon64.cc34 "prfm pldl1keep, [%0, 448] \n" // prefetch 7 lines ahead in ScaleRowDown2_NEON()
57 "prfm pldl1keep, [%0, 448] \n" // prefetch 7 lines ahead in ScaleRowDown2Linear_NEON()
81 "prfm pldl1keep, [%0, 448] \n" // prefetch 7 lines ahead in ScaleRowDown2Box_NEON()
108 "prfm pldl1keep, [%0, 448] \n" // prefetch 7 lines ahead in ScaleRowDown4_NEON()
133 "prfm pldl1keep, [%0, 448] \n" // prefetch 7 lines ahead in ScaleRowDown4Box_NEON()
167 "prfm pldl1keep, [%0, 448] \n" // prefetch 7 lines ahead in ScaleRowDown34_NEON()
202 "prfm pldl1keep, [%0, 448] \n" // prefetch 7 lines ahead in ScaleRowDown34_0_Box_NEON()
252 "prfm pldl1keep, [%0, 448] \n" // prefetch 7 lines ahead in ScaleRowDown34_1_Box_NEON()
301 "prfm pldl1keep, [%0, 448] \n" // prefetch 7 lines ahead in ScaleRowDown38_NEON()
402 "prfm pldl1keep, [%0, 448] \n" // prefetch 7 lines ahead in ScaleRowDown38_3_Box_NEON()
[all …]
/aosp_15_r20/external/libaom/third_party/libyuv/source/
H A Dscale_neon64.cc34 "prfm pldl1keep, [%0, 448] \n" // prefetch 7 lines ahead in ScaleRowDown2_NEON()
57 "prfm pldl1keep, [%0, 448] \n" // prefetch 7 lines ahead in ScaleRowDown2Linear_NEON()
81 "prfm pldl1keep, [%0, 448] \n" // prefetch 7 lines ahead in ScaleRowDown2Box_NEON()
108 "prfm pldl1keep, [%0, 448] \n" // prefetch 7 lines ahead in ScaleRowDown4_NEON()
133 "prfm pldl1keep, [%0, 448] \n" // prefetch 7 lines ahead in ScaleRowDown4Box_NEON()
167 "prfm pldl1keep, [%0, 448] \n" // prefetch 7 lines ahead in ScaleRowDown34_NEON()
202 "prfm pldl1keep, [%0, 448] \n" // prefetch 7 lines ahead in ScaleRowDown34_0_Box_NEON()
252 "prfm pldl1keep, [%0, 448] \n" // prefetch 7 lines ahead in ScaleRowDown34_1_Box_NEON()
301 "prfm pldl1keep, [%0, 448] \n" // prefetch 7 lines ahead in ScaleRowDown38_NEON()
402 "prfm pldl1keep, [%0, 448] \n" // prefetch 7 lines ahead in ScaleRowDown38_3_Box_NEON()
[all …]
/aosp_15_r20/external/google-cloud-java/java-container/proto-google-cloud-container-v1beta1/src/main/java/com/google/container/v1beta1/
H A DAdditionalPodRangesConfig.java79 * Name for pod secondary ipv4 range which has the actual range defined ahead.
93 * Name for pod secondary ipv4 range which has the actual range defined ahead.
107 * Name for pod secondary ipv4 range which has the actual range defined ahead.
122 * Name for pod secondary ipv4 range which has the actual range defined ahead.
512 * Name for pod secondary ipv4 range which has the actual range defined ahead.
526 * Name for pod secondary ipv4 range which has the actual range defined ahead.
540 * Name for pod secondary ipv4 range which has the actual range defined ahead.
555 * Name for pod secondary ipv4 range which has the actual range defined ahead.
570 * Name for pod secondary ipv4 range which has the actual range defined ahead.
592 * Name for pod secondary ipv4 range which has the actual range defined ahead.
[all …]
/aosp_15_r20/external/google-cloud-java/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/
H A DAdditionalPodRangesConfig.java79 * Name for pod secondary ipv4 range which has the actual range defined ahead.
93 * Name for pod secondary ipv4 range which has the actual range defined ahead.
107 * Name for pod secondary ipv4 range which has the actual range defined ahead.
122 * Name for pod secondary ipv4 range which has the actual range defined ahead.
511 * Name for pod secondary ipv4 range which has the actual range defined ahead.
525 * Name for pod secondary ipv4 range which has the actual range defined ahead.
539 * Name for pod secondary ipv4 range which has the actual range defined ahead.
554 * Name for pod secondary ipv4 range which has the actual range defined ahead.
569 * Name for pod secondary ipv4 range which has the actual range defined ahead.
591 * Name for pod secondary ipv4 range which has the actual range defined ahead.
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/remain/src/
Dparse.rs28 let ahead = input.fork(); in parse() localVariable
29 let _ = ahead.call(Attribute::parse_outer)?; in parse()
31 if ahead.peek(Token![match]) { in parse()
39 if ahead.peek(Token![let]) { in parse()
55 let _: Visibility = ahead.parse()?; in parse()
56 if ahead.peek(Token![enum]) { in parse()
58 } else if ahead.peek(Token![struct]) { in parse()
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/syn-1.0.109/src/
H A Ditem.rs981 let ahead = input.fork(); in parse() localVariable
982 let vis: Visibility = ahead.parse()?; in parse()
984 let lookahead = ahead.lookahead1(); in parse()
985 let mut item = if lookahead.peek(Token![fn]) || peek_signature(&ahead) { in parse()
995 ahead.parse::<Token![extern]>()?; in parse()
996 let lookahead = ahead.lookahead1(); in parse()
1002 ahead.parse::<LitStr>()?; in parse()
1003 let lookahead = ahead.lookahead1(); in parse()
1046 ahead.parse::<Token![const]>()?; in parse()
1047 let lookahead = ahead.lookahead1(); in parse()
[all …]
H A Dpat.rs324 let ahead = input.fork(); in parse() localVariable
325 ahead.parse::<Option<Ident>>()?.is_some() in parse()
326 && (ahead.peek(Token![::]) in parse()
327 || ahead.peek(Token![!]) in parse()
328 || ahead.peek(token::Brace) in parse()
329 || ahead.peek(token::Paren) in parse()
330 || ahead.peek(Token![..]) in parse()
331 && ahead.parse::<RangeLimits>().is_ok() in parse()
332 && !(ahead.is_empty() || ahead.peek(Token![,]))) in parse()
334 let ahead = input.fork(); in parse() localVariable
[all …]
H A Dstmt.rs160 let ahead = input.fork(); in parse_stmt() localVariable
161 if let Ok(path) = ahead.call(Path::parse_mod_style) { in parse_stmt()
162 if ahead.peek(Token![!]) in parse_stmt()
163 && (ahead.peek2(token::Brace) in parse_stmt()
164 && !(ahead.peek3(Token![.]) || ahead.peek3(Token![?])) in parse_stmt()
165 || ahead.peek2(Ident)) in parse_stmt()
167 input.advance_to(&ahead); in parse_stmt()
/aosp_15_r20/external/intel-media-driver/media_softlet/agnostic/common/codec/hal/enc/hevc/features/
H A Dencode_vdenc_lpla_analysis.h368 //! \brief Set look ahead init dmem buffer
375 //! \brief Set look ahead update dmem buffer
389 //! \brief Get look ahead status report
400 //! \brief Calculate Look ahead records
407 //! \brief Check if look ahead pass is required
414 //! \brief Check if look ahead record is empty
421 //! \brief Check if look ahead record is empty
428 //! \brief Check if look ahead init is required
430 //! true if look ahead init is required
454 //! \brief Dump look ahead resource
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/syn-2.0.55/src/
H A Drestriction.rs76 let ahead = input.fork(); in parse() localVariable
77 let group = crate::group::parse_group(&ahead)?; in parse()
79 input.advance_to(&ahead); in parse()
97 let ahead = input.fork(); in parse_pub() localVariable
100 let paren_token = parenthesized!(content in ahead); in parse_pub()
112 input.advance_to(&ahead); in parse_pub()
124 input.advance_to(&ahead); in parse_pub()
H A Ditem.rs951 let ahead = input.fork(); in parse_rest_of_item() localVariable
952 let vis: Visibility = ahead.parse()?; in parse_rest_of_item()
954 let lookahead = ahead.lookahead1(); in parse_rest_of_item()
955 let mut item = if lookahead.peek(Token![fn]) || peek_signature(&ahead) { in parse_rest_of_item()
965 ahead.parse::<Token![extern]>()?; in parse_rest_of_item()
966 let lookahead = ahead.lookahead1(); in parse_rest_of_item()
972 ahead.parse::<LitStr>()?; in parse_rest_of_item()
973 let lookahead = ahead.lookahead1(); in parse_rest_of_item()
1059 ahead.parse::<Token![unsafe]>()?; in parse_rest_of_item()
1060 let lookahead = ahead.lookahead1(); in parse_rest_of_item()
[all …]
H A Dstmt.rs203 let ahead = input.fork(); in parse_stmt() localVariable
205 if let Ok(path) = ahead.call(Path::parse_mod_style) { in parse_stmt()
206 if ahead.peek(Token![!]) { in parse_stmt()
207 if ahead.peek2(Ident) || ahead.peek2(Token![try]) { in parse_stmt()
209 } else if ahead.peek2(token::Brace) in parse_stmt()
210 && !(ahead.peek3(Token![.]) || ahead.peek3(Token![?])) in parse_stmt()
212 input.advance_to(&ahead); in parse_stmt()
/aosp_15_r20/external/rust/android-crates-io/crates/syn/src/
Drestriction.rs76 let ahead = input.fork(); in parse() localVariable
77 let group = crate::group::parse_group(&ahead)?; in parse()
79 input.advance_to(&ahead); in parse()
97 let ahead = input.fork(); in parse_pub() localVariable
100 let paren_token = parenthesized!(content in ahead); in parse_pub()
112 input.advance_to(&ahead); in parse_pub()
124 input.advance_to(&ahead); in parse_pub()
Ditem.rs951 let ahead = input.fork(); in parse_rest_of_item() localVariable
952 let vis: Visibility = ahead.parse()?; in parse_rest_of_item()
954 let lookahead = ahead.lookahead1(); in parse_rest_of_item()
955 let mut item = if lookahead.peek(Token![fn]) || peek_signature(&ahead) { in parse_rest_of_item()
965 ahead.parse::<Token![extern]>()?; in parse_rest_of_item()
966 let lookahead = ahead.lookahead1(); in parse_rest_of_item()
972 ahead.parse::<LitStr>()?; in parse_rest_of_item()
973 let lookahead = ahead.lookahead1(); in parse_rest_of_item()
1059 ahead.parse::<Token![unsafe]>()?; in parse_rest_of_item()
1060 let lookahead = ahead.lookahead1(); in parse_rest_of_item()
[all …]
Dstmt.rs203 let ahead = input.fork(); in parse_stmt() localVariable
205 if let Ok(path) = ahead.call(Path::parse_mod_style) { in parse_stmt()
206 if ahead.peek(Token![!]) { in parse_stmt()
207 if ahead.peek2(Ident) || ahead.peek2(Token![try]) { in parse_stmt()
209 } else if ahead.peek2(token::Brace) in parse_stmt()
210 && !(ahead.peek3(Token![.]) || ahead.peek3(Token![?])) in parse_stmt()
212 input.advance_to(&ahead); in parse_stmt()
/aosp_15_r20/external/antlr/runtime/Ruby/lib/antlr3/
H A Dstreams.rb96 to a recognizer at look-ahead position specified by <tt>k</tt>. For
98 <tt>k</tt> characters ahead of the stream cursor. For <b>TokenStreams</b>, this
99 is the <i>integer token type of the token</i> <tt>k</tt> tokens ahead of the
103 look-ahead position specified by <tt>k</tt>. While <tt>peek</tt> provides the
107 character</i> <tt>k</tt> characters ahead of the stream cursor. For
109 ahead of the stream cursor.
116 quick-look (peek) and a full-fledged look-ahead operation (look). If this causes
349 #peek method returns the integer character value at look-ahead position
492 # return the character at look-ahead distance +k+ as an integer. <tt>k = 1</tt> represents
517 # operator style look-ahead
[all …]
/aosp_15_r20/external/openthread/src/core/mac/
H A Dsub_mac_csl_receiver.cpp148 …* |<--Ahead-->|<--UnCert-->|<--Drift-->|<--Drift-->|<--UnCert-->|<--MinWin-->| … in HandleCslTimer()
269 uint32_t sampleTime, ahead, after; in LogReceived() local
282 GetCslWindowEdges(ahead, after); in LogReceived()
283 ahead -= kMinReceiveOnAhead + kCslReceiveTimeAhead; in LogReceived()
295 …Append("Expected sample time %lu, margin ±%lu, deviation %ld", ToUlong(sampleTime), ToUlong(ahead), in LogReceived()
301 // case only `ahead` is used, as an allowable max deviation in both +/- directions. in LogReceived()
302 if ((deviation + ahead > 0) && (deviation < static_cast<int32_t>(ahead))) in LogReceived()
/aosp_15_r20/external/cldr/common/bcp47/
H A Dtimezone.xml438 <type name="utce01" description="1 hour ahead of UTC" alias="Etc/GMT-1"/>
439 <type name="utce02" description="2 hours ahead of UTC" alias="Etc/GMT-2"/>
440 <type name="utce03" description="3 hours ahead of UTC" alias="Etc/GMT-3"/>
441 <type name="utce04" description="4 hours ahead of UTC" alias="Etc/GMT-4"/>
442 <type name="utce05" description="5 hours ahead of UTC" alias="Etc/GMT-5"/>
443 <type name="utce06" description="6 hours ahead of UTC" alias="Etc/GMT-6"/>
444 <type name="utce07" description="7 hours ahead of UTC" alias="Etc/GMT-7"/>
445 <type name="utce08" description="8 hours ahead of UTC" alias="Etc/GMT-8"/>
446 <type name="utce09" description="9 hours ahead of UTC" alias="Etc/GMT-9"/>
447 <type name="utce10" description="10 hours ahead of UTC" alias="Etc/GMT-10"/>
[all …]
/aosp_15_r20/system/core/fs_mgr/libsnapshot/snapuserd/user-space-merge/
H A Dsnapuserd_transitions.cpp22 * We create a scratch space of 2MB to store the read-ahead data in the COW
39 * | Read-ahead data |
58 * Read-ahead thread will read all the 6 source blocks and store the data in the
87 * Read-ahead thread will process the COW Ops in fixed set. Consider
184 // is no read-ahead thread in InitiateMerge()
233 // when read-ahead IO is in progress, the state of data in the COW file in ReadAheadIOCompleted()
235 // in the scratch space is good and during next reboot, read-ahead thread in ReadAheadIOCompleted()
384 SNAP_LOG(ERROR) << "Read-ahead thread did not start"; in WaitForRaThreadToStart()
462 //========== End of Read-ahead state transition functions ====================
515 * onwards, I/O will be served from Read-ahead buffer. However, merge thread
[all …]
/aosp_15_r20/external/google-cloud-java/java-compute/proto-google-cloud-compute-v1/src/main/java/com/google/cloud/compute/v1/
H A DAutoscalingPolicyCpuUtilization.java75 …availability by monitoring daily and weekly load patterns and scaling out ahead of anticipated dem…
105 …availability by monitoring daily and weekly load patterns and scaling out ahead of anticipated dem…
138 …availability by monitoring daily and weekly load patterns and scaling out ahead of anticipated dem…
241 …availability by monitoring daily and weekly load patterns and scaling out ahead of anticipated dem…
257 …availability by monitoring daily and weekly load patterns and scaling out ahead of anticipated dem…
281 …availability by monitoring daily and weekly load patterns and scaling out ahead of anticipated dem…
725 …availability by monitoring daily and weekly load patterns and scaling out ahead of anticipated dem…
740 …availability by monitoring daily and weekly load patterns and scaling out ahead of anticipated dem…
763 …availability by monitoring daily and weekly load patterns and scaling out ahead of anticipated dem…
786 …availability by monitoring daily and weekly load patterns and scaling out ahead of anticipated dem…
[all …]
/aosp_15_r20/external/libxaac/encoder/
H A Diusace_signal_classifier.h51 WORD32 init_result_ahead[NFRAMEAHEAD]; /**<buffer of ahead mode decisions */
53 WORD32 flag_border_buf_ahead[NFRAMEAHEAD]; /**<buffer of ahead border flags */
55 FLOAT32 frame_energy_buf_ahead[NFRAMEAHEAD]; /**<buffer of ahead energies */
119 WORD32 *init_result_ahead; /**< buffer of ahead mode decisions */
122 WORD32 *flag_border_buf_ahead; /**< buffer of ahead flags of border */
125 FLOAT32 *frame_energy_buf_ahead; /**< buffer of ahead frame energies */
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/cxxbridge-cmd-1.0.121/src/gen/
H A Dfile.rs34 let ahead = input.fork(); in parse() localVariable
35 ahead.parse::<Visibility>()?; in parse()
36 ahead.parse::<Option<Token![unsafe]>>()?; in parse()
37 if !ahead.peek(Token![mod]) { in parse()
52 input.advance_to(&ahead); in parse()
/aosp_15_r20/external/rust/cxx/gen/src/
Dfile.rs34 let ahead = input.fork(); in parse() localVariable
35 ahead.parse::<Visibility>()?; in parse()
36 ahead.parse::<Option<Token![unsafe]>>()?; in parse()
37 if !ahead.peek(Token![mod]) { in parse()
52 input.advance_to(&ahead); in parse()
/aosp_15_r20/external/executorch/docs/source/
H A Dcompiler-delegate-and-partitioner.md17 - Ahead-of-Time (AOT)
18 - Program preprocessing (e.g. ahead of time compilation, transformation, optimization...).
26 1) An ahead-of-time preprocessing interface
33 **Figure 1.** A high level of entry points for backend interfaces, including both ahead-of-time and…
35 ## Backend Interfaces: Ahead-of-Time Preprocessing
37 There are mainly two Ahead-of-Time entry point for backend to implement: `partition` and `preproces…
153 can access the weights and biases ahead-of-time through the exported program. To

12345678910>>...165