Home
last modified time | relevance | path

Searched refs:_keys (Results 1 - 15 of 15) sorted by relevance

/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-number-parser.hh147 const unsigned char *_keys; in strtod_rl() local
154 _keys = _double_parser_trans_keys + (cs<<1); in strtod_rl()
158 _trans = _inds[ _slen > 0 && _keys[0] <=(*p) && in strtod_rl()
159 (*p) <= _keys[1] ? in strtod_rl()
160 (*p) - _keys[0] : _slen ]; in strtod_rl()
H A Dhb-ot-shape-complex-khmer-machine.hh285 const unsigned char *_keys; in find_syllables_khmer() local
298 _keys = _khmer_syllable_machine_trans_keys + (cs<<1); in find_syllables_khmer()
302 _trans = _inds[ _slen > 0 && _keys[0] <=( info[p].khmer_category()) && in find_syllables_khmer()
303 ( info[p].khmer_category()) <= _keys[1] ? in find_syllables_khmer()
304 ( info[p].khmer_category()) - _keys[0] : _slen ]; in find_syllables_khmer()
H A Dhb-buffer-deserialize-json.hh520 const unsigned char *_keys; in _hb_buffer_deserialize_json() local
527 _keys = _deserialize_json_trans_keys + (cs<<1); in _hb_buffer_deserialize_json()
531 _trans = _inds[ _slen > 0 && _keys[0] <=(*p) && in _hb_buffer_deserialize_json()
532 (*p) <= _keys[1] ? in _hb_buffer_deserialize_json()
533 (*p) - _keys[0] : _slen ]; in _hb_buffer_deserialize_json()
H A Dhb-ot-shape-complex-myanmar-machine.hh401 const unsigned char *_keys; in find_syllables_myanmar() local
414 _keys = _myanmar_syllable_machine_trans_keys + (cs<<1); in find_syllables_myanmar()
418 _trans = _inds[ _slen > 0 && _keys[0] <=( info[p].myanmar_category()) && in find_syllables_myanmar()
419 ( info[p].myanmar_category()) <= _keys[1] ? in find_syllables_myanmar()
420 ( info[p].myanmar_category()) - _keys[0] : _slen ]; in find_syllables_myanmar()
H A Dhb-ot-shape-complex-indic-machine.hh459 const unsigned char *_keys; in find_syllables_indic() local
472 _keys = _indic_syllable_machine_trans_keys + (cs<<1); in find_syllables_indic()
476 _trans = _inds[ _slen > 0 && _keys[0] <=( info[p].indic_category()) && in find_syllables_indic()
477 ( info[p].indic_category()) <= _keys[1] ? in find_syllables_indic()
478 ( info[p].indic_category()) - _keys[0] : _slen ]; in find_syllables_indic()
H A Dhb-ot-shape-complex-use-machine.hh469 const unsigned char *_keys; in find_syllables_use() local
482 _keys = _use_syllable_machine_trans_keys + (cs<<1); in find_syllables_use()
486 _trans = _inds[ _slen > 0 && _keys[0] <=( (*p).second.second.use_category()) && in find_syllables_use()
487 ( (*p).second.second.use_category()) <= _keys[1] ? in find_syllables_use()
488 ( (*p).second.second.use_category()) - _keys[0] : _slen ]; in find_syllables_use()
H A Dhb-buffer-deserialize-text.hh436 const unsigned char *_keys; in _hb_buffer_deserialize_text() local
443 _keys = _deserialize_text_trans_keys + (cs<<1); in _hb_buffer_deserialize_text()
447 _trans = _inds[ _slen > 0 && _keys[0] <=(*p) && in _hb_buffer_deserialize_text()
448 (*p) <= _keys[1] ? in _hb_buffer_deserialize_text()
449 (*p) - _keys[0] : _slen ]; in _hb_buffer_deserialize_text()
/third_party/node/deps/v8/tools/testrunner/testproc/
H A Dcombiner.py111 self._keys = []
115 self._keys.append(key)
122 group_key = rng.choice(self._keys)
/third_party/libwebsockets/plugins/ssh-base/crypto/
H A Dchacha.c234 #define K_1(_keys) &((struct lws_cipher_chacha *)_keys->cipher)->ccctx[0]
235 #define K_2(_keys) &((struct lws_cipher_chacha *)_keys->cipher)->ccctx[1]
/third_party/python/PC/layout/support/
H A Dnuspec.py22 _keys=("PYTHON_BITNESS", "PACKAGENAME", "PACKAGETITLE"), variable
61 for k, v in zip(NUSPEC_PLATFORM_DATA["_keys"], NUSPEC_PLATFORM_DATA[ns.arch]):
H A Dappxmanifest.py34 _keys=("ProcessorArchitecture",), variable
401 for k, v in zip(APPX_PLATFORM_DATA["_keys"], APPX_PLATFORM_DATA[ns.arch]):
/third_party/python/Lib/test/
H A Dtest_copy.py731 self._keys = list(d.keys())
735 if key not in self._keys:
736 self._keys.append(key)
740 self.assertEqual(x._keys, y._keys)
744 self.assertNotEqual(x._keys, y._keys)
/third_party/node/deps/npm/node_modules/pacote/lib/
H A Dregistry.js44 if (this.opts[`${regKey}:_keys`]) {
45 this.registryKeys = this.opts[`${regKey}:_keys`]
/third_party/python/Lib/
H A Dturtle.py995 self._keys = []
1030 for key in self._keys[:]:
1391 if key in self._keys:
1392 self._keys.remove(key)
1393 elif key not in self._keys:
1394 self._keys.append(key)
1423 if key in self._keys:
1424 self._keys.remove(key)
1425 elif key is not None and key not in self._keys:
1426 self._keys
[all...]
/third_party/protobuf/ruby/ext/google/protobuf_c/
H A Dupb.c11823 const char *_keys; in parse() local
11830 _keys = _json_trans_keys + _json_key_offsets[cs]; in parse()
11835 const char *_lower = _keys; in parse()
11837 const char *_upper = _keys + _klen - 1; in parse()
11848 _trans += (unsigned int)(_mid - _keys); in parse()
11852 _keys += _klen; in parse()
11858 const char *_lower = _keys; in parse()
11860 const char *_upper = _keys + (_klen<<1) - 2; in parse()
11871 _trans += (unsigned int)((_mid - _keys)>>1); in parse()

Completed in 34 milliseconds