/third_party/mesa3d/src/compiler/glsl/ |
H A D | linker.cpp | 2661 * \param target_index Selector for the program target to receive location 2676 unsigned target_index, in assign_attribute_or_color_locations() 2683 unsigned max_index = (target_index == MESA_SHADER_VERTEX) ? in assign_attribute_or_color_locations() 2684 constants->Program[target_index].MaxAttribs : in assign_attribute_or_color_locations() 2692 assert((target_index == MESA_SHADER_VERTEX) in assign_attribute_or_color_locations() 2693 || (target_index == MESA_SHADER_FRAGMENT)); in assign_attribute_or_color_locations() 2695 gl_linked_shader *const sh = prog->_LinkedShaders[target_index]; in assign_attribute_or_color_locations() 2715 const int generic_base = (target_index == MESA_SHADER_VERTEX) in assign_attribute_or_color_locations() 2719 (target_index == MESA_SHADER_VERTEX) in assign_attribute_or_color_locations() 2767 } else if (target_index in assign_attribute_or_color_locations() 2673 assign_attribute_or_color_locations(void *mem_ctx, gl_shader_program *prog, const struct gl_constants *constants, unsigned target_index, bool do_assignment) assign_attribute_or_color_locations() argument [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | psd.c | 229 unsigned long target_index = 0; in decode_rle() local 259 if (target_index + repeat_count >= s->uncompressed_size) { in decode_rle() 266 s->tmp[target_index++] = v; in decode_rle() 275 if (target_index + rle_char >= s->uncompressed_size) { in decode_rle() 282 s->tmp[target_index++] = v; in decode_rle()
|
/third_party/mesa3d/src/mesa/main/ |
H A D | texstate.c | 661 gl_texture_index target_index; in update_single_program_texture() local 678 target_index = ffs(prog->TexturesUsed[unit]) - 1; in update_single_program_texture() 679 texObj = texUnit->CurrentTex[target_index]; in update_single_program_texture() 707 texObj = _mesa_get_fallback_texture(ctx, target_index); in update_single_program_texture() 869 const gl_texture_index target_index = ffs(prog->TexturesUsed[unit]) - 1; in fix_missing_textures_for_atifs() local 873 _mesa_get_fallback_texture(ctx, target_index); in fix_missing_textures_for_atifs()
|
/third_party/node/deps/v8/src/web-snapshot/ |
H A D | web-snapshot.cc | 2313 uint32_t target_index) { in AddDeferredReference() 2340 Smi::FromInt(target_type), Smi::FromInt(target_index)); in AddDeferredReference() 2360 int target_index = raw_deferred_references.Get(i + 3).ToSmi().value(); in ProcessDeferredReferences() local 2364 if (static_cast<uint32_t>(target_index) >= function_count_) { in ProcessDeferredReferences() 2371 target = functions_.get(target_index); in ProcessDeferredReferences() 2374 if (static_cast<uint32_t>(target_index) >= class_count_) { in ProcessDeferredReferences() 2379 target = classes_.get(target_index); in ProcessDeferredReferences() 2382 if (static_cast<uint32_t>(target_index) >= array_count_) { in ProcessDeferredReferences() 2387 target = arrays_.get(target_index); in ProcessDeferredReferences() 2390 if (static_cast<uint32_t>(target_index) > in ProcessDeferredReferences() 2311 AddDeferredReference( Handle<HeapObject> container, uint32_t index, ValueType target_type, uint32_t target_index) AddDeferredReference() argument [all...] |
/third_party/node/deps/v8/src/codegen/s390/ |
H A D | assembler-s390.cc | 717 int32_t target_index = AddCodeTarget(target); in call() local 718 brasl(r14, Operand(target_index)); in call() 727 int32_t target_index = AddCodeTarget(target); in jump() local 728 brcl(cond, Operand(target_index)); in jump()
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | si_test_image_copy_region.c | 333 unsigned target_index; in set_random_image_attrs() local 336 target_index = 6; /* CB resolving doesn't support array textures. */ in set_random_image_attrs() 338 target_index = rand() % (allow_msaa ? 8 : 6); in set_random_image_attrs() 341 switch (target_index) { in set_random_image_attrs()
|
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-array-gen.cc | 1417 TNode<Number> target_index = var_target_index.value(); in FlattenIntoArray() local 1476 element_length, target_index, NumberDec(depth))); in FlattenIntoArray() 1493 element_length, target_index, NumberDec(depth))); in FlattenIntoArray() 1502 target_index, NumberConstant(kMaxSafeInteger), &throw_error); in FlattenIntoArray() 1508 target_index, element); in FlattenIntoArray() 1511 var_target_index = NumberInc(target_index); in FlattenIntoArray() 1516 source_length, target_index); in FlattenIntoArray()
|
/third_party/libabigail/src/ |
H A D | abg-elf-helpers.cc | 665 size_t target_index = elf_ndxscn(target_section); in find_relocation_section() local 678 if (header->sh_info == target_index) in find_relocation_section()
|
/third_party/node/deps/v8/src/objects/ |
H A D | js-objects.cc | 3126 int target_index = new_descriptors->GetFieldIndex(i); in MigrateFastToFast() local 3127 if (target_index < inobject) { in MigrateFastToFast() 3128 inobject_props->set(target_index, *value); in MigrateFastToFast() 3130 array->set(target_index - inobject, *value); in MigrateFastToFast() 3144 int target_index = new_descriptors->GetFieldIndex(i); in MigrateFastToFast() local 3145 if (target_index < inobject) { in MigrateFastToFast() 3146 inobject_props->set(target_index, *value); in MigrateFastToFast() 3148 array->set(target_index - inobject, *value); in MigrateFastToFast()
|
/third_party/node/deps/v8/src/interpreter/ |
H A D | interpreter-assembler.cc | 1284 TNode<WordT> target_index = IntPtrAdd(base_index, next_bytecode); in DispatchWide() local 1286 DispatchTablePointer(), TimesSystemPointerSize(target_index)); in DispatchWide()
|
/third_party/skia/third_party/externals/spirv-tools/source/val/ |
H A D | validate_memory.cpp | 1084 const auto target_index = 0; in ValidateCopyMemory() local 1085 const auto target_id = inst->GetOperandAs<uint32_t>(target_index); in ValidateCopyMemory()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/ |
H A D | validate_memory.cpp | 1084 const auto target_index = 0; in ValidateCopyMemory() local 1085 const auto target_id = inst->GetOperandAs<uint32_t>(target_index); in ValidateCopyMemory()
|
/third_party/spirv-tools/source/val/ |
H A D | validate_memory.cpp | 1161 const auto target_index = 0; in ValidateCopyMemory() local 1162 const auto target_id = inst->GetOperandAs<uint32_t>(target_index); in ValidateCopyMemory()
|
/third_party/node/deps/v8/src/codegen/ppc/ |
H A D | macro-assembler-ppc.cc | 187 int32_t target_index = AddCodeTarget(code); in Jump() local 188 Jump(static_cast<intptr_t>(target_index), rmode, cond, cr); in Jump() 266 int32_t target_index = AddCodeTarget(code); in Call() local 267 Call(static_cast<Address>(target_index), rmode, cond); in Call()
|
/third_party/node/deps/v8/src/codegen/riscv64/ |
H A D | macro-assembler-riscv64.cc | 3273 int32_t target_index = AddCodeTarget(code); in Jump() local 3274 Jump(static_cast<intptr_t>(target_index), rmode, cond, rs, rt); in Jump() 3355 int32_t target_index = AddCodeTarget(code); in Call() local 3356 Call(static_cast<Address>(target_index), rmode, cond, rs, rt); in Call()
|