/third_party/node/deps/v8/src/compiler/ |
H A D | compilation-dependencies.cc | 11 #include "src/objects/internal-index.h" 435 FieldIndex index, const ObjectRef& value) in OwnConstantDataPropertyDependency() 441 index_(index), in OwnConstantDataPropertyDependency() 503 InternalIndex index, in OwnConstantDictionaryPropertyDependency() 509 index_(index), in OwnConstantDictionaryPropertyDependency() 529 << "has a value that might not safe to read at index " 943 OwnConstantElementDependency(const JSObjectRef& holder, uint32_t index, in OwnConstantElementDependency() argument 947 index_(index), in OwnConstantElementDependency() 1157 const JSObjectRef& holder, uint32_t index, const ObjectRef& element) { in DependOnOwnConstantElement() 1159 zone_->New<OwnConstantElementDependency>(holder, index, elemen in DependOnOwnConstantElement() 431 OwnConstantDataPropertyDependency(JSHeapBroker* broker, const JSObjectRef& holder, const MapRef& map, Representation representation, FieldIndex index, const ObjectRef& value) OwnConstantDataPropertyDependency() argument 501 OwnConstantDictionaryPropertyDependency(JSHeapBroker* broker, const JSObjectRef& holder, InternalIndex index, const ObjectRef& value) OwnConstantDictionaryPropertyDependency() argument 1156 DependOnOwnConstantElement( const JSObjectRef& holder, uint32_t index, const ObjectRef& element) DependOnOwnConstantElement() argument 1162 DependOnOwnConstantDataProperty( const JSObjectRef& holder, const MapRef& map, Representation representation, FieldIndex index, const ObjectRef& value) DependOnOwnConstantDataProperty() argument 1169 DependOnOwnConstantDictionaryProperty( const JSObjectRef& holder, InternalIndex index, const ObjectRef& value) DependOnOwnConstantDictionaryProperty() argument [all...] |
H A D | int64-lowering.cc | 151 void Int64Lowering::GetIndexNodes(Node* index, Node** index_low, in GetIndexNodes() argument 154 *index_low = index; in GetIndexNodes() 155 *index_high = graph()->NewNode(machine()->Int32Add(), index, in GetIndexNodes() 158 *index_low = graph()->NewNode(machine()->Int32Add(), index, in GetIndexNodes() 160 *index_high = index; in GetIndexNodes() 169 Node* index = node->InputAt(1); in LowerLoadOperator() local 172 GetIndexNodes(index, &index_low, &index_high); in LowerLoadOperator() 202 Node* index = node->InputAt(1); in LowerStoreOperator() local 205 GetIndexNodes(index, &index_low, &index_high); in LowerStoreOperator() 1172 Node* index in LowerMemoryBaseAndIndex() local [all...] |
/third_party/node/deps/v8/src/regexp/ |
H A D | regexp-compiler-tonode.cc | 542 bool CharAtEquals(bool ignore_case, int index, const RegExpAtom* a, in CharAtEquals() argument 544 return Equals(ignore_case, a->data().at(index), b->data().at(index)); in CharAtEquals() 592 int index, const RegExpAtom* a, const RegExpAtom* b) { in CharAtEquals() 593 return Equals(ignore_case, canonicalize, a->data().at(index), in CharAtEquals() 594 b->data().at(index)); in CharAtEquals() 614 // i is length or it is the index of an atom. in SortConsecutiveAtoms() 952 RegExpCapture::StartRegister(index()), in RationalizeConsecutiveAtoms() 953 RegExpCapture::EndRegister(index()), flags_, compiler->read_backward(), in RationalizeConsecutiveAtoms() 1030 return ToNode(body(), index(), compile in RationalizeConsecutiveAtoms() 590 CharAtEquals(bool ignore_case, unibrow::Mapping<unibrow::Ecma262Canonicalize>* canonicalize, int index, const RegExpAtom* a, const RegExpAtom* b) CharAtEquals() argument 1033 ToNode(RegExpTree* body, int index, RegExpCompiler* compiler, RegExpNode* on_success) RationalizeConsecutiveAtoms() argument [all...] |
/third_party/python/Lib/collections/ |
H A D | __init__.py | 346 _tuplegetter = lambda index, doc: property(_itemgetter(index), doc=doc) 381 for index, name in enumerate(field_names): 386 field_names[index] = f'_{index}' 497 for index, name in enumerate(field_names): 498 doc = _sys.intern(f'Alias for field number {index}') 499 class_namespace[name] = _tuplegetter(index, doc) 1309 def index(self, item, *args): member in UserList 1310 return self.data.index(ite 1466 def index(self, sub, start=0, end=_sys.maxsize): global() member in UserString [all...] |
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | gen_builtin_symbols.py | 654 index = basic_types_enumeration.index(basic) 655 if index < 26: 656 return '0' + chr(ord('A') + index) 657 if index < 52: 658 return '0' + chr(ord('a') + index - 26) 659 if index < 78: 660 return '1' + chr(ord('A') + index - 52) 661 return '1' + chr(ord('a') + index - 78) 1308 return line[:line.index(',')] [all...] |
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
H A D | glcUniformBlockTests.cpp | 630 for (unsigned int index = 0; index < 2; ++index) in Link() 632 std::string shaderSource = version + "\n" + shaderDefinition[index].body; in Link() 635 glw::GLuint sh = gl.createShader(shaderDefinition[index].type); in Link() 651 m_context.getTestContext().getLog() << tcu::TestLog::Message << shaderDefinition[index].name in Link() 810 for (unsigned int index = 0; index < 2; ++index) in Test() 812 std::string shaderSource = version + "\n" + shaderDefinition[index] in Test() [all...] |
/third_party/skia/third_party/externals/icu/source/tools/tzcode/ |
H A D | tz2icu.cpp | 126 int32_t type; // index into 'ZoneInfo.types' 0..255 142 int32_t abbr; // index into ZoneInfo.abbrs 0..n-1 178 // contain their index numbers (each index >= 0). 188 void setAliasTo(int32_t index); 194 void addAlias(int32_t index); 214 void ZoneInfo::addAlias(int32_t index) { 215 assert(aliasTo < 0 && index >= 0 && aliases.find(index) == aliases.end()); 216 aliases.insert(index); 501 int32_t index = x - abbroffset.begin(); readzoneinfo() local [all...] |
/third_party/skia/src/pdf/ |
H A D | SkPDFDevice.cpp | 883 int index = c.fGlyphIndex; in internalDrawGlyphRun() local 884 int glyphLimit = index + c.fGlyphCount; in internalDrawGlyphRun() 900 glyphLimit > index + 1 || // toUnicode wouldn't work in internalDrawGlyphRun() 901 unichar != map_glyph(glyphToUnicode, glyphIDs[index])) // test single Unichar map in internalDrawGlyphRun() 920 for (; index < glyphLimit; ++index) { in internalDrawGlyphRun() 921 SkGlyphID gid = glyphIDs[index]; in internalDrawGlyphRun() 925 SkPoint xy = glyphRun.positions()[index]; in internalDrawGlyphRun() 928 glyphs[index], textScaleX, textScaleY, in internalDrawGlyphRun() 939 if (needs_new_font(font, glyphs[index], fontTyp in internalDrawGlyphRun() [all...] |
/third_party/skia/src/pathops/ |
H A D | SkOpCoincidence.cpp | 309 for (int index = 0; index < i.used(); ++index) { in addEndMovedSpans() 310 double t = i[0][index]; in addEndMovedSpans() 314 SkDPoint oppPt = i.pt(index); in addEndMovedSpans() 672 for (int index = 1; index < overlaps.count(); ++index) { // combine overlaps before continuing in addOrOverlap() 673 SkCoincidentSpans* test = overlaps[index]; in addOrOverlap() 1413 for (int index in Ordered() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/ |
H A D | ieee802_11_common.c | 2044 * frequency index 42, 58, 106, 122, 138, 155, 171 with channel spacing 2105 * frequency index 42, 58, 106, 122, 138, 155 with channel spacing 2975 int index; in parse_oh_ht_mcs_for_max_noss() local 2976 for (index = MAX_NOSS_RX_LENGTH; index >= 1; index--) { in parse_oh_ht_mcs_for_max_noss() 2977 if (ht_caps->supported_mcs_set[index - 1] > 0) { in parse_oh_ht_mcs_for_max_noss() 2978 max_noss_rx = index; in parse_oh_ht_mcs_for_max_noss() 2999 int index; in parse_oh_macs_for_max_noss() local 3000 for (index in parse_oh_macs_for_max_noss() [all...] |
/drivers/hdf_core/framework/model/storage/include/mmc/ |
H A D | mmc_block.h | 55 int32_t index; member
|
/third_party/ffmpeg/libavcodec/ |
H A D | mpeg12dec.h | 58 int16_t *block, int index, int qscale);
|
H A D | v4l2_buffers.h | 118 * @param[in] index v4l2 buffer id 122 int ff_v4l2_buffer_initialize(V4L2Buffer* avbuf, int index);
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/message2/ |
H A D | FormattedMessage.java | 60 public char charAt(int index) { in charAt() argument
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | cpdtrtst.h | 32 void runIndexedTest(int32_t index, UBool exec, const char* &name, char* par=NULL) override;
|
H A D | dadrcal.h | 33 void runIndexedTest(int32_t index, UBool exec, const char* &name,
|
H A D | csdetest.h | 24 virtual void runIndexedTest(int32_t index, UBool exec, const char* &name, char* par = NULL ) override;
|
H A D | itformat.h | 25 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL ) override;
|
H A D | mnkytst.h | 33 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL ) override;
|
H A D | msfmrgts.h | 24 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) override;
|
H A D | apicoll.h | 26 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* /*par = NULL */) override; 105 * - resetting the iterator index
|
H A D | calcasts.h | 26 virtual void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par ) override;
|
H A D | alphaindextst.h | 24 virtual void runIndexedTest(int32_t index, UBool exec, const char* &name, char* par = NULL ) override;
|
H A D | dtptngts.h | 24 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL ) override;
|
H A D | localebuildertest.h | 16 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL ) override;
|