Home
last modified time | relevance | path

Searched refs:idx (Results 4026 - 4050 of 4248) sorted by relevance

1...<<161162163164165166167168169170

/third_party/mesa3d/src/amd/llvm/
H A Dac_nir_to_llvm.c452 int idx; in emit_ddxy() local
464 idx = 1; in emit_ddxy()
466 idx = 2; in emit_ddxy()
468 result = ac_build_ddxy(&ctx->ac, mask, idx, src0); in emit_ddxy()
5381 int idx = variable->data.location + variable->data.index; in ac_handle_shader_output_decl() local
5382 if (idx == VARYING_SLOT_CLIP_DIST0) { in ac_handle_shader_output_decl()
5396 int idx = ac_llvm_reg_index_soa(output_loc + i, chan); in ac_handle_shader_output_decl() local
5397 abi->outputs[idx] = ac_build_alloca_undef(ctx, type, ""); in ac_handle_shader_output_decl()
5398 abi->is_16bit[idx] = is_16bit; in ac_handle_shader_output_decl()
/third_party/mesa3d/src/gallium/drivers/iris/
H A Diris_state.c4184 for (uint8_t idx = 0; idx < wm_prog_data->urb_setup_attribs_count; idx++) { in iris_emit_sbe_swiz()
4185 const uint8_t fs_attr = wm_prog_data->urb_setup_attribs[idx]; in iris_emit_sbe_swiz()
8368 const unsigned idx = scale > 1; in emit_hashing_mode() local
8370 if (width > min_size[idx][0] || height > min_size[idx][1]) { in emit_hashing_mode()
8378 reg.SliceHashing = (devinfo->num_slices > 1 ? slice_hashing[idx] : 0); in emit_hashing_mode()
8380 reg.SubsliceHashing = subslice_hashing[idx]; in emit_hashing_mode()
/third_party/skia/third_party/externals/imgui/
H A Dimgui_demo.cpp3520 int idx; in EditTableSizingFlags() local
3521 for (idx = 0; idx < IM_ARRAYSIZE(policies); idx++) in EditTableSizingFlags()
3522 if (policies[idx].Value == (*p_flags & ImGuiTableFlags_SizingMask_)) in EditTableSizingFlags()
3524 const char* preview_text = (idx < IM_ARRAYSIZE(policies)) ? policies[idx].Name + (idx > 0 ? strlen("ImGuiTableFlags") : 0) : ""; in EditTableSizingFlags()
3528 if (ImGui::Selectable(policies[n].Name, idx == n)) in EditTableSizingFlags()
/third_party/protobuf/ruby/ext/google/protobuf_c/
H A Dupb.h1014 UPB_INLINE bool _upb_has_field(const void *msg, size_t idx) { in _upb_has_field() argument
1015 return (*PTR_AT(msg, idx / 8, const char) & (1 << (idx % 8))) != 0; in _upb_has_field()
1018 UPB_INLINE bool _upb_sethas(const void *msg, size_t idx) { in _upb_sethas() argument
1019 return (*PTR_AT(msg, idx / 8, char)) |= (char)(1 << (idx % 8)); in _upb_sethas()
1022 UPB_INLINE bool _upb_clearhas(const void *msg, size_t idx) { in _upb_clearhas() argument
1023 return (*PTR_AT(msg, idx / 8, char)) &= (char)(~(1 << (idx % 8))); in _upb_clearhas()
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
H A Dwpa_supplicant.c1725 static void wpas_ext_capab_byte(struct wpa_supplicant *wpa_s, u8 *pos, int idx) in wpas_ext_capab_byte() argument
1729 switch (idx) { in wpas_ext_capab_byte()
7259 unsigned int idx = 0, i; local
7267 if (idx == len)
7283 for (i = 0; i < idx; i++)
7287 if (i == idx)
7288 freqs_data[idx++].freq = freq;
7297 dump_freq_data(wpa_s, "completed iteration", freqs_data, idx);
7298 return idx;
/arkcompiler/ets_runtime/ecmascript/compiler/
H A Dnumber_speculative_retype.cpp1562 acc_.ReplaceValueIn(gate, CheckAndConvertToInt32(value, GateType::NumberType()), 2); // 2: value idx in VisitStoreElement()
1567 acc_.ReplaceValueIn(gate, CheckAndConvertToFloat64(value, GateType::NumberType()), 2); // 2: value idx in VisitStoreElement()
1570 acc_.ReplaceValueIn(gate, ConvertToTagged(value), 2); // 2: value idx in VisitStoreElement()
1983 void NumberSpeculativeRetype::SetNewInputForMathImul(GateRef gate, int idx, Label *exit) in SetNewInputForMathImul() argument
1985 GateRef input = acc_.GetValueIn(gate, idx); in SetNewInputForMathImul()
1995 acc_.ReplaceValueIn(gate, input, idx); in SetNewInputForMathImul()
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
H A DCollationMiscTest.java2274 int idx = can.indexOf("@collation="); in TestJB5298()
2275 String val = idx >= 0 ? can.substring(idx+11, can.length()) : ""; in TestJB5298()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/
H A DCollationMiscTest.java2277 int idx = can.indexOf("@collation="); in TestJB5298()
2278 String val = idx >= 0 ? can.substring(idx+11, can.length()) : ""; in TestJB5298()
/third_party/mesa3d/src/amd/vulkan/
H A Dradv_private.h2271 gl_shader_stage stage, int idx);
2907 int radv_queue_init(struct radv_device *device, struct radv_queue *queue, int idx,
2912 struct radv_descriptor_set *set, unsigned idx);
/third_party/node/deps/brotli/c/dec/
H A Ddecode.c35 #define BROTLI_LOG_ARRAY_INDEX(array_name, idx) \
37 (unsigned long)(idx), (unsigned long)array_name[idx]))
/third_party/mesa3d/src/microsoft/vulkan/
H A Ddzn_pipeline.c1690 uint32_t idx = subpass->color_attachments[i].attachment; in dzn_graphics_pipeline_create() local
1692 if (idx == VK_ATTACHMENT_UNUSED) continue; in dzn_graphics_pipeline_create()
1695 &pass->attachments[idx]; in dzn_graphics_pipeline_create()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DMachineVerifier.cpp828 SlotIndex idx = Indexes->getInstructionIndex(*MI); in visitMachineBundleBefore() local
829 if (!(idx > lastIndex)) { in visitMachineBundleBefore()
833 lastIndex = idx; in visitMachineBundleBefore()
/third_party/skia/src/sksl/codegen/
H A DSkSLMetalCodeGenerator.cpp2595 const IndexExpression& idx = e->as<IndexExpression>(); in requirements() local
2596 return this->requirements(idx.base().get()) | this->requirements(idx.index().get()); in requirements()
/third_party/skia/third_party/externals/brotli/c/dec/
H A Ddecode.c35 #define BROTLI_LOG_ARRAY_INDEX(array_name, idx) \
37 (unsigned long)(idx), (unsigned long)array_name[idx]))
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
H A DLocal.cpp196 unsigned idx = i->getCaseIndex(); in ConstantFoldTerminator() local
197 Weights[0] += Weights[idx+1]; in ConstantFoldTerminator()
199 std::swap(Weights[idx+1], Weights.back()); in ConstantFoldTerminator()
/third_party/skia/third_party/externals/tint/src/writer/glsl/
H A Dgenerator_impl.cc1111 int idx = signature.IndexOf(usage);
1112 return (idx >= 0) ? arguments[idx] : nullptr;
/third_party/skia/third_party/externals/tint/src/writer/msl/
H A Dgenerator_impl.cc852 int idx = signature.IndexOf(usage); in EmitTextureCall()
853 return (idx >= 0) ? arguments[idx] : nullptr; in EmitTextureCall()
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DCodedInputStream.java3474 final int idx = (int) (currentByteBufferPos - currentAddress); in readBytes()
3475 final ByteString result = ByteString.wrap(slice(idx, idx + size)); in readBytes()
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/dbus/
H A Ddbus_new.c2564 int idx = priv->globals_start; in wpa_dbus_ctrl_iface_props_deinit() local
2567 while (priv->all_interface_properties[idx].dbus_property) in wpa_dbus_ctrl_iface_props_deinit()
2569 priv->all_interface_properties[idx++].dbus_property); in wpa_dbus_ctrl_iface_props_deinit()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/
H A Ddriver_wext.c43 int idx, u32 value) in wpa_driver_wext_set_auth_param()
50 iwr.u.param.flags = idx & IW_AUTH_INDEX; in wpa_driver_wext_set_auth_param()
57 idx, value, strerror(errno)); in wpa_driver_wext_set_auth_param()
42 wpa_driver_wext_set_auth_param(struct wpa_driver_wext_data *drv, int idx, u32 value) wpa_driver_wext_set_auth_param() argument
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/dbus/
H A Ddbus_new.c2663 int idx = priv->globals_start; in wpa_dbus_ctrl_iface_props_deinit() local
2666 while (priv->all_interface_properties[idx].dbus_property) in wpa_dbus_ctrl_iface_props_deinit()
2668 priv->all_interface_properties[idx++].dbus_property); in wpa_dbus_ctrl_iface_props_deinit()
/third_party/icu/icu4c/source/i18n/
H A Dsmpdtfmt.cpp3996 int32_t idx = start; in countDigits() local
3997 while (idx < end) { in countDigits()
3998 UChar32 cp = text.char32At(idx); in countDigits()
4002 idx += U16_LENGTH(cp); in countDigits()
/third_party/ntfs-3g/src/
H A Dntfs-3g.c2949 static int ntfs_fuse_bmap(const char *path, size_t blocksize, uint64_t *idx) in ntfs_fuse_bmap() argument
2984 lcn = ntfs_rl_vcn_to_lcn(na->rl, *idx / cl_per_bl); in ntfs_fuse_bmap()
2985 *idx = (lcn > 0) ? lcn * cl_per_bl + *idx % cl_per_bl : 0; in ntfs_fuse_bmap()
/third_party/node/deps/icu-small/source/i18n/
H A Dsmpdtfmt.cpp3947 int32_t idx = start; in countDigits() local
3948 while (idx < end) { in countDigits()
3949 UChar32 cp = text.char32At(idx); in countDigits()
3953 idx += U16_LENGTH(cp); in countDigits()
/third_party/ltp/tools/sparse/sparse-src/
H A Dparse.c1273 int idx = 0; in attribute_context() local
1284 idx++; in attribute_context()
1288 context->in = get_expression_value(args[idx++]); in attribute_context()
1289 context->out = get_expression_value(args[idx++]); in attribute_context()

Completed in 134 milliseconds

1...<<161162163164165166167168169170