Searched refs:key_pos (Results 1 – 7 of 7) sorted by relevance
/third_party/mindspore/mindspore/lite/src/ |
D | huffman_decode.cc | 30 auto key_pos = input_str.find_first_of('#'); in DoHuffmanDecode() local 31 auto code_pos = input_str.find_first_of('#', key_pos + 1); in DoHuffmanDecode() 32 auto key = input_str.substr(0, key_pos); in DoHuffmanDecode() 33 auto code = input_str.substr(key_pos + 1, code_pos - key_pos - 1); in DoHuffmanDecode()
|
/third_party/gettext/gettext-tools/src/ |
D | read-desktop.h | 58 lex_pos_ty *key_pos, 95 lex_pos_ty *key_pos,
|
D | x-desktop.c | 115 lex_pos_ty *key_pos, in extract_desktop_handle_pair() argument 131 false, null_context, key_pos, in extract_desktop_handle_pair()
|
D | read-desktop.c | 80 lex_pos_ty *key_pos, in desktop_reader_handle_pair() argument 86 reader->methods->handle_pair (reader, key_pos, key, locale, value); in desktop_reader_handle_pair()
|
D | write-desktop.c | 63 lex_pos_ty *key_pos, in msgfmt_desktop_handle_pair() argument
|
/third_party/python/Modules/ |
D | _functoolsmodule.c | 815 Py_ssize_t key_size, pos, key_pos, kwds_size; in lru_cache_make_key() local 844 key_pos = 0; in lru_cache_make_key() 848 PyTuple_SET_ITEM(key, key_pos++, item); in lru_cache_make_key() 852 PyTuple_SET_ITEM(key, key_pos++, kwd_mark); in lru_cache_make_key() 855 PyTuple_SET_ITEM(key, key_pos++, keyword); in lru_cache_make_key() 857 PyTuple_SET_ITEM(key, key_pos++, value); in lru_cache_make_key() 859 assert(key_pos == PyTuple_GET_SIZE(args) + kwds_size * 2 + 1); in lru_cache_make_key() 865 PyTuple_SET_ITEM(key, key_pos++, item); in lru_cache_make_key() 871 PyTuple_SET_ITEM(key, key_pos++, item); in lru_cache_make_key() 875 assert(key_pos == key_size); in lru_cache_make_key()
|
/third_party/flatbuffers/rust/flatbuffers/src/ |
D | verifier.rs | 424 let key_pos = self.deref(key_field_voff)?; in visit_union() localVariable 425 match (key_pos, val_pos) { in visit_union()
|