Home
last modified time | relevance | path

Searched refs:nth (Results 1 - 25 of 29) sorted by relevance

12

/third_party/skia/third_party/externals/libwebp/src/mux/
H A Dmuxinternal.c101 WebPChunk* ChunkSearchList(WebPChunk* first, uint32_t nth, uint32_t tag) { in ChunkSearchList() argument
102 uint32_t iter = nth; in ChunkSearchList()
111 return ((nth > 0) && (iter > 0)) ? NULL : first; in ChunkSearchList()
275 // where 'prev_wpi' is the pointer to the image at position (nth - 1).
276 // Returns true if nth image was found.
277 static int SearchImageToGetOrDelete(WebPMuxImage** wpi_list, uint32_t nth, in SearchImageToGetOrDelete() argument
283 if (nth == 0) { in SearchImageToGetOrDelete()
284 nth = MuxImageCount(*wpi_list, WEBP_CHUNK_NIL); in SearchImageToGetOrDelete()
285 if (nth == 0) return 0; // Not found. in SearchImageToGetOrDelete()
291 if (count == nth) retur in SearchImageToGetOrDelete()
333 MuxImageDeleteNth(WebPMuxImage** wpi_list, uint32_t nth) MuxImageDeleteNth() argument
345 MuxImageGetNth(const WebPMuxImage** wpi_list, uint32_t nth, WebPMuxImage** wpi) MuxImageGetNth() argument
[all...]
H A Dmuxi.h122 // Search for nth chunk with given 'tag' in the chunk list.
123 // nth = 0 means "last of the list".
124 WebPChunk* ChunkSearchList(WebPChunk* first, uint32_t nth, uint32_t tag);
200 // Delete nth image in the image list.
201 WebPMuxError MuxImageDeleteNth(WebPMuxImage** wpi_list, uint32_t nth);
203 // Get nth image in the image list.
204 WebPMuxError MuxImageGetNth(const WebPMuxImage** wpi_list, uint32_t nth,
H A Dmuxread.c25 const WebPChunk* const chunk = ChunkSearchList((LIST), nth, \
36 uint32_t nth, WebPData* const data) { in MuxGet()
479 const WebPMux* mux, uint32_t nth, WebPMuxFrameInfo* frame) { in WebPMuxGetFrame()
487 // Get the nth WebPMuxImage. in WebPMuxGetFrame()
488 err = MuxImageGetNth((const WebPMuxImage**)&mux->images_, nth, &wpi); in WebPMuxGetFrame()
35 MuxGet(const WebPMux* const mux, CHUNK_INDEX idx, uint32_t nth, WebPData* const data) MuxGet() argument
478 WebPMuxGetFrame( const WebPMux* mux, uint32_t nth, WebPMuxFrameInfo* frame) WebPMuxGetFrame() argument
H A Dmuxedit.c380 WebPMuxError WebPMuxDeleteFrame(WebPMux* mux, uint32_t nth) { in WebPMuxDeleteFrame() argument
382 return MuxImageDeleteNth(&mux->images_, nth); in WebPMuxDeleteFrame()
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cond_timedwait/
H A Ds-c.c556 int ret, nth; in main() local
601 for (nth = 0; nth < NSCENAR; nth++) in main()
602 output(" %s", test_scenar[nth].desc); in main()
607 nth = 0; in main()
609 nth += 100 * SCALABILITY_FACTOR; in main()
617 m_tmp->nthreads = nth; in main()
621 dur = do_threads_test(nth, m_tmp); in main()
/third_party/elfutils/libdw/
H A Dmemory-access.h64 #define get_uleb128_step(var, addr, nth) \
67 (var) |= (typeof (var)) (__b & 0x7f) << ((nth) * 7); \
112 #define get_sleb128_step(var, addr, nth) \
115 (var) |= (typeof (var)) (__b & 0x7f) << ((nth) * 7); \
119 (var) |= - ((typeof (var)) 1 << (((nth) + 1) * 7)); \
/third_party/ltp/testcases/network/stress/interface/
H A Dif-mtu-change.sh101 local nth=$(($cnt % $mtu_array_len))
102 field=$(($nth + 1))
/third_party/skia/third_party/externals/libwebp/src/webp/
H A Dmux.h247 // Gets the nth frame from the mux object.
251 // nth=0 has a special meaning - last position.
254 // nth - (in) index of the frame in the mux object
258 // WEBP_MUX_NOT_FOUND - if there are less than nth frames in the mux object.
259 // WEBP_MUX_BAD_DATA - if nth frame chunk in mux is invalid.
263 const WebPMux* mux, uint32_t nth, WebPMuxFrameInfo* frame);
266 // nth=0 has a special meaning - last position.
269 // nth - (in) The position from which the frame is to be deleted
272 // WEBP_MUX_NOT_FOUND - If there are less than nth frames in the mux object
275 WEBP_EXTERN WebPMuxError WebPMuxDeleteFrame(WebPMux* mux, uint32_t nth);
[all...]
/third_party/curl/tests/server/
H A Dsockfilt.c624 HANDLE signal; /* internal thread signal (indexed by nth) */
625 HANDLE thread; /* internal thread handle (indexed by nth) */
630 DWORD timeout_ms, wait, nfd, nth, nws, i; in select_ws() local
685 nth = 0; /* number of internal waiting threads */ in select_ws()
721 data[nth].signal = signal; in select_ws()
722 data[nth].thread = handle; in select_ws()
724 nth++; in select_ws()
775 data[nth].signal = signal; in select_ws()
776 data[nth].thread = handle; in select_ws()
778 nth in select_ws()
[all...]
/third_party/rust/crates/version_check/src/
H A Dlib.rs100 let version = components.nth(1); in version_and_date_from_rustc_version()
110 let split = |s: &str| s.splitn(2, ":").nth(1).map(|s| s.trim().to_string()); in version_and_date_from_rustc_verbose_version()
111 match line.trim().split(" ").nth(0) { in version_and_date_from_rustc_verbose_version()
H A Dversion.rs59 .nth(0) in parse()
/third_party/alsa-lib/alsalisp/
H A Dtest.lisp207 (nth) (&check-memory)
208 (nth 2) (&check-memory)
209 (nth 2 nil) (&check-memory)
210 (nth 2 '(('one 'two 'three))) (&check-memory)
/third_party/rust/crates/os_str_bytes/src/windows/wtf8/
H A Dstring.rs27 .nth(1)
/third_party/rust/crates/libc/
H A Dbuild.rs145 let nightly_raw = otry!(pieces.next()).split('-').nth(1); in rustc_minor_nightly()
/third_party/rust/crates/syn/examples/dump-syntax/src/
H A Dmain.rs102 let code_line = match start.line.checked_sub(1).and_then(|n| code.lines().nth(n)) { in render_location()
/third_party/rust/crates/cxx/gen/cmd/src/gen/
H A Dnested.rs30 if let Some(first_ns_elem) = api.namespace().iter().nth(depth) { in sort_by_inner_namespace()
/third_party/rust/crates/cxx/gen/src/
H A Dnested.rs30 if let Some(first_ns_elem) = api.namespace().iter().nth(depth) { in sort_by_inner_namespace()
/third_party/rust/crates/cxx/gen/lib/src/gen/
H A Dnested.rs30 if let Some(first_ns_elem) = api.namespace().iter().nth(depth) { in sort_by_inner_namespace()
/third_party/rust/crates/cxx/gen/build/src/gen/
H A Dnested.rs30 if let Some(first_ns_elem) = api.namespace().iter().nth(depth) { in sort_by_inner_namespace()
/third_party/ltp/tools/sparse/sparse-src/
H A Dptrlist.h82 #define ptr_list_nth(lst, nth) ({ \
84 (PTRLIST_TYPE(lst)) ptr_list_nth_entry(head, nth);\
/third_party/rust/crates/bindgen/bindgen/ir/
H A Dcomp.rs165 nth: usize,
174 pub fn nth(&self) -> usize { in nth() functions
175 self.nth in nth()
592 nth: *bitfield_unit_count, in bitfields_to_allocation_units()
/third_party/node/tools/gyp/tools/emacs/
H A Dgyp.el158 (if (= (nth 0 state) -1)
/third_party/rust/crates/proc-macro-error/test-crate/
H A Dlib.rs257 let last = Span::from(spans.nth(1).unwrap()); in explicit_span_range()
/third_party/rust/crates/either/src/
H A Dlib.rs971 fn nth(&mut self, n: usize) -> Option<Self::Item> { in nth() functions
972 for_both!(*self, ref mut inner => inner.nth(n)) in nth()
/third_party/rust/crates/proc-macro2/src/
H A Dfallback.rs386 .nth(lo_char - last_char_index) in source_text()
398 let source_text = match trunc_lo.char_indices().nth(char_len) { in source_text()

Completed in 17 milliseconds

12