/third_party/ffmpeg/libavutil/ |
H A D | opt.h | 146 * const AVClass child_class_iterate(void **iter) 148 * const AVClass *c = *iter ? NULL : &child_class; 149 * *iter = (void*)(uintptr_t)c; 657 * @param iter a pointer where iteration state is stored. 660 const AVClass *av_opt_child_class_iterate(const AVClass *parent, void **iter);
|
/third_party/mesa3d/.gitlab-ci/bin/ |
H A D | ci_run_n_monitor.py | 180 return next(iter(target_statuses)), None
|
/third_party/node/deps/v8/tools/release/ |
H A D | list_deprecated.py | 59 line_iter = iter(result.splitlines())
|
/third_party/ninja/src/ |
H A D | browse.py | 69 lines = iter(text.split('\n'))
|
/third_party/mesa3d/src/virtio/vulkan/ |
H A D | vn_common.h | 260 vn_relax(uint32_t *iter, const char *reason);
|
/third_party/node/deps/openssl/openssl/crypto/pkcs12/ |
H A D | p12_npas.c | 183 *piter = ASN1_INTEGER_get(pbe->iter); in alg_get()
|
/third_party/rust/crates/clap/clap_derive/src/ |
H A D | attr.rs | 1 use std::iter::FromIterator;
|
/third_party/python/Tools/scripts/ |
H A D | highlight.py | 33 readline = functools.partial(next, iter(lines), '')
|
/third_party/python/Lib/ |
H A D | netrc.py | 39 fiter = iter(self._read_char, "")
|
/third_party/python/Lib/re/ |
H A D | __init__.py | 299 del _cache[next(iter(_cache))]
|
/third_party/openssl/crypto/pkcs12/ |
H A D | p12_npas.c | 183 *piter = ASN1_INTEGER_get(pbe->iter); in alg_get()
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | basic_block.h | 217 // |label_id| containing the instructions from |iter| onwards. Instructions 218 // prior to |iter| remain in this basic block. The new block will be added 221 iterator iter);
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | basic_block.h | 217 // |label_id| containing the instructions from |iter| onwards. Instructions 218 // prior to |iter| remain in this basic block. The new block will be added 221 iterator iter);
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | gen-vowel-constraints.py | 94 s.append ('{}matched = 0x{:04X}u == buffer->cur ({}).codepoint;\n'.format (indent, next (iter (self._c)), index or ''))
|
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | _parameterized.py | 365 iterator = iter(obj)
|
/third_party/python/Doc/tools/extensions/ |
H A D | c_annotations.py | 50 return iter(self.traverse(*args, **kwargs))
|
/third_party/python/Lib/test/test_importlib/import_/ |
H A D | test_fromlist.py | 157 self.__import__('pkg', fromlist=iter([b'attr']))
|
/third_party/rust/crates/bindgen/bindgen/ir/ |
H A D | enum_ty.rs | 168 self.variants().iter().any(|v| enums.matches(v.name())) in is_matching_enum()
|
H A D | objc.rs | 296 for arg in args.iter() { in format_method_call()
|
/third_party/rust/crates/nix/src/sys/ |
H A D | sendfile.rs | 86 headers.map(|s| s.iter().map(|b| IoSlice::new(b)).collect()); in new() 88 trailers.map(|s| s.iter().map(|b| IoSlice::new(b)).collect());
|
/third_party/rust/crates/nix/src/ |
H A D | dir.rs | 76 pub fn iter(&mut self) -> Iter { in iter() functions 128 /// Return type of [`Dir::iter`]. 179 /// use std::{iter::Iterator, string::String};
|
/third_party/rust/crates/proc-macro-error/src/ |
H A D | diagnostic.rs | 269 .iter() in to_tokens()
|
/third_party/spirv-tools/source/opt/ |
H A D | basic_block.h | 217 // |label_id| containing the instructions from |iter| onwards. Instructions 218 // prior to |iter| remain in this basic block. The new block will be added 221 iterator iter);
|
/third_party/skia/third_party/externals/angle2/scripts/ |
H A D | run_code_generation.py | 152 for chunk in iter(lambda: f.read(4096), ""):
|
/kernel/linux/linux-5.10/drivers/crypto/ |
H A D | talitos.c | 466 int tail, iter; in current_desc_hdr() local 479 iter = tail; in current_desc_hdr() 480 while (priv->chan[ch].fifo[iter].dma_desc != cur_desc && in current_desc_hdr() 481 priv->chan[ch].fifo[iter].desc->next_desc != cpu_to_be32(cur_desc)) { in current_desc_hdr() 482 iter = (iter + 1) & (priv->fifo_len - 1); in current_desc_hdr() 483 if (iter == tail) { in current_desc_hdr() 489 if (priv->chan[ch].fifo[iter].desc->next_desc == cpu_to_be32(cur_desc)) { in current_desc_hdr() 492 edesc = container_of(priv->chan[ch].fifo[iter].desc, in current_desc_hdr() 498 return priv->chan[ch].fifo[iter] in current_desc_hdr() [all...] |