Searched refs:index_out (Results 1 – 9 of 9) sorted by relevance
/third_party/node/deps/v8/src/snapshot/ |
D | serializer.h | 144 bool LookupOrInsert(HeapObject obj, int* index_out) { in LookupOrInsert() argument 149 *index_out = *find_result.entry; in LookupOrInsert() 152 bool LookupOrInsert(Handle<HeapObject> obj, int* index_out) { in LookupOrInsert() argument 153 return LookupOrInsert(*obj, index_out); in LookupOrInsert() 156 bool Lookup(HeapObject obj, int* index_out) const { in Lookup() argument 161 *index_out = *index; in Lookup()
|
/third_party/node/deps/v8/src/compiler/ |
D | access-info.cc | 670 InternalIndex* index_out, PropertyDetails* details_out) const { in TryLoadPropertyDetails() argument 689 *index_out = dict.FindEntry(isolate(), name.object()); in TryLoadPropertyDetails() 690 if (index_out->is_found()) { in TryLoadPropertyDetails() 691 *details_out = dict.DetailsAt(*index_out); in TryLoadPropertyDetails() 695 *index_out = dict.FindEntry(isolate(), name.object()); in TryLoadPropertyDetails() 696 if (index_out->is_found()) { in TryLoadPropertyDetails() 697 *details_out = dict.DetailsAt(*index_out); in TryLoadPropertyDetails() 702 *index_out = descriptors.Search(*name.object(), *map.object(), true); in TryLoadPropertyDetails() 703 if (index_out->is_found()) { in TryLoadPropertyDetails() 704 *details_out = descriptors.GetDetails(*index_out); in TryLoadPropertyDetails()
|
D | access-info.h | 276 NameRef name, InternalIndex* index_out,
|
/third_party/ffmpeg/libavcodec/ |
D | psd.c | 298 int index_out, c, y, x, p; in decode_frame() local 451 … index_out = y * picture->linesize[0] + x * s->channel_count * s->pixel_size + c * s->pixel_size; in decode_frame() 453 ptr[index_out + p] = *ptr_data; in decode_frame()
|
D | exr.c | 817 int index_tl_x, index_tl_y, index_out, index_tmp; in b44_uncompress() local 860 … index_out = target_channel_offset * td->xsize + y * td->channel_line_size + 2 * x; in b44_uncompress() 862 td->uncompressed_data[index_out] = tmp_buffer[index_tmp] & 0xff; in b44_uncompress() 863 td->uncompressed_data[index_out + 1] = tmp_buffer[index_tmp] >> 8; in b44_uncompress() 876 index_out = target_channel_offset * td->xsize + y * td->channel_line_size; in b44_uncompress() 877 memcpy(&td->uncompressed_data[index_out], sr, td->xsize * 4); in b44_uncompress()
|
/third_party/node/deps/v8/src/regexp/ |
D | regexp-parser.cc | 222 bool ParseBackReferenceIndex(int* index_out); 1027 bool RegExpParserImpl<CharT>::ParseBackReferenceIndex(int* index_out) { in ParseBackReferenceIndex() argument 1056 *index_out = value; in ParseBackReferenceIndex()
|
/third_party/node/deps/v8/src/web-snapshot/ |
D | web-snapshot.cc | 427 int index_out; in InsertIntoIndexMap() local 428 if (external_objects_ids_.Lookup(heap_object, &index_out)) { in InsertIntoIndexMap() 431 bool found = map.LookupOrInsert(heap_object, &index_out); in InsertIntoIndexMap() 432 id = static_cast<uint32_t>(index_out); in InsertIntoIndexMap()
|
/third_party/mesa3d/src/compiler/spirv/ |
D | vtn_private.h | 933 nir_ssa_def **index_out);
|
/third_party/node/deps/v8/src/ic/ |
D | ic.cc | 1443 KeyType TryConvertKey(Handle<Object> key, Isolate* isolate, intptr_t* index_out, in TryConvertKey() argument 1446 *index_out = Smi::ToInt(*key); in TryConvertKey() 1453 *index_out = static_cast<intptr_t>(num); in TryConvertKey() 1454 if (*index_out != num) return kBailout; in TryConvertKey() 1462 *index_out = static_cast<intptr_t>(maybe_array_index); in TryConvertKey()
|