/third_party/mesa3d/src/freedreno/ir3/ |
H A D | ir3_spill.c | 690 set_src_val(struct ir3_register *src, const struct reg_or_immed *val) in set_src_val() argument 692 if (val->flags & IR3_REG_IMMED) { in set_src_val() 693 src->flags = IR3_REG_IMMED | (val->flags & IR3_REG_HALF); in set_src_val() 694 src->uim_val = val->uimm; in set_src_val() 696 } else if (val->flags & IR3_REG_CONST) { in set_src_val() 697 src->flags = IR3_REG_CONST | (val->flags & IR3_REG_HALF); in set_src_val() 698 src->num = val->const_num; in set_src_val() 701 src->def = val->def; in set_src_val() 702 val->def->instr->flags &= ~IR3_INSTR_UNUSED; in set_src_val() 725 spill(struct ra_spill_ctx *ctx, const struct reg_or_immed *val, in spill() argument 1614 struct reg_or_immed *val = read_live_in(ctx, reg, block, 0); spill_single_pred_live_in() local 1766 struct reg_or_immed *val = ralloc(ctx, struct reg_or_immed); record_live_out() local [all...] |
/third_party/mesa3d/src/compiler/glsl/ |
H A D | glsl_to_nir.cpp | 904 nir_ssa_def *val = evaluate_rvalue(ir->value); in visit() local 905 nir_store_deref(&b, ret_deref, val, ~0); in visit() 1258 deref = swizzle->val->as_dereference(); in visit() 1482 ir_rvalue *val = ((ir_instruction *)param)->as_rvalue(); in visit() local 1488 nir_ssa_def *nir_val = evaluate_rvalue(val); in visit() 1489 if (val->type->is_boolean()) in visit() 1495 intrinsic_set_std430_align(instr, val->type); in visit() 1497 instr->num_components = val->type->vector_elements; in visit() 1530 ir_rvalue *val = ((ir_instruction *)param)->as_rvalue(); in visit() local 1541 nir_ssa_def *nir_val = evaluate_rvalue(val); in visit() 1705 nir_ssa_def *val = evaluate_rvalue(param_rvalue); visit() local 2547 int val = c->get_int_component(j); visit() local [all...] |
H A D | opt_algebraic.cpp | 219 if (x->val->equals(y->val) && in try_replace_with_dot() 220 x->val->equals(z->val) && in try_replace_with_dot() 221 x->val->equals(w->val)) { in try_replace_with_dot() 222 return dot(x->val, new(mem_ctx) ir_constant(1.0f, 4)); in try_replace_with_dot()
|
/third_party/cups-filters/utils/ |
H A D | cups-browsed.c | 3856 const char *val; in get_local_printers() local 3871 val = cupsGetOption ("printer-is-temporary", in get_local_printers() 3874 is_temporary = (val && (!strcasecmp (val, "yes") || in get_local_printers() 3875 !strcasecmp (val, "on") || in get_local_printers() 3876 !strcasecmp (val, "true"))); in get_local_printers() 3881 val = cupsGetOption ("printer-uri-supported", in get_local_printers() 3886 is_cups_supported_remote = (val == NULL || is_temporary); in get_local_printers() 3893 val = cupsGetOption (CUPS_BROWSED_MARK, in get_local_printers() 3896 cups_browsed_controlled = val in get_local_printers() 5703 char *opt = NULL, *val; load_printer_options() local 7679 const char *val = NULL; update_cups_queues() local 11937 int val = atoi(value); read_configuration() local 12248 char *val; main() local [all...] |
/third_party/node/deps/undici/ |
H A D | undici.js | 651 function parseKeepAliveTimeout(val) { 652 const m = val.toString().match(KEEPALIVE_TIMEOUT_EXPR); 665 let val = obj[key]; 666 if (!val) { 673 if (!Array.isArray(val)) { 674 val = [val]; 675 obj[key] = val; 677 val.push(headers[i + 1].toString("utf8")); 692 const val [all...] |
/third_party/mesa3d/src/nouveau/codegen/ |
H A D | nv50_ir_emit_gm107.cpp | 260 CodeEmitterGM107::emitGPR(int pos, const Value *val) in emitGPR() argument 262 emitField(pos, 8, val && !val->inFile(FILE_FLAGS) ? in emitGPR() 263 val->reg.data.id : 255); in emitGPR() 267 CodeEmitterGM107::emitSYS(int pos, const Value *val) in emitSYS() argument 269 int id = val ? val->reg.data.id : -1; in emitSYS() 278 case SV_TID : id = 0x21 + val->reg.data.sv.index; break; in emitSYS() 279 case SV_CTAID : id = 0x25 + val->reg.data.sv.index; break; in emitSYS() 285 case SV_CLOCK : id = 0x50 + val in emitSYS() 296 emitPRED(int pos, const Value *val) emitPRED() argument 344 uint32_t val = imm->reg.data.u32; emitIMMD() local 956 bool val = false; gm107_selpFlip() local [all...] |
/third_party/ffmpeg/libavdevice/ |
H A D | pulse_audio_enc.c | 102 double val; in pulse_audio_sink_input_cb() local 111 val = (double)vol / PA_VOLUME_NORM; in pulse_audio_sink_input_cb() 112 avdevice_dev_to_app_control_message(h, AV_DEV_TO_APP_VOLUME_LEVEL_CHANGED, &val, sizeof(val)); in pulse_audio_sink_input_cb() 173 int64_t val = nbytes; in pulse_stream_writable() local 178 avdevice_dev_to_app_control_message(h, AV_DEV_TO_APP_BUFFER_WRITABLE, &val, sizeof(val)); in pulse_stream_writable()
|
/third_party/curl/lib/vtls/ |
H A D | x509asn1.c | 310 unsigned int val = 0; in int2str() local 321 val = ~val; in int2str() 324 val = (val << 8) | *(const unsigned char *) beg++; in int2str() 326 return Curl_dyn_addf(store, "%s%x", val >= 10? "0x": "", val); in int2str()
|
/third_party/icu/icu4c/source/common/ |
H A D | uniset_props.cpp | 854 double val = uprv_strtod(vname.data(), &end); in applyPropertyAlias() local 859 if (*end != 0 || !(0 <= val && val <= 255) || in applyPropertyAlias() 860 (v = (int32_t)val) != val) { in applyPropertyAlias() 876 double val = uprv_strtod(vname.data(), &end); in applyPropertyAlias() local 880 applyFilter(numericValueFilter, &val, in applyPropertyAlias()
|
/third_party/node/deps/icu-small/source/common/ |
H A D | uniset_props.cpp | 851 double val = uprv_strtod(vname.data(), &end); in applyPropertyAlias() local 856 if (*end != 0 || !(0 <= val && val <= 255) || in applyPropertyAlias() 857 (v = (int32_t)val) != val) { in applyPropertyAlias() 873 double val = uprv_strtod(vname.data(), &end); in applyPropertyAlias() local 877 applyFilter(numericValueFilter, &val, in applyPropertyAlias()
|
/third_party/mesa3d/src/microsoft/compiler/ |
H A D | dxil_dump.c | 622 const struct dxil_value *val[]) in dump_instr_print_operands() 627 dump_value(d, val[i]); in dump_instr_print_operands() 632 dump_value(struct dxil_dumper *d, const struct dxil_value *val) in dump_value() argument 634 if (val->id < 10) in dump_value() 636 if (val->id < 100) in dump_value() 638 _mesa_string_buffer_printf(d->buf, "%%%d", val->id); in dump_value() 639 dump_type_name(d, val->type); in dump_value() 621 dump_instr_print_operands(struct dxil_dumper *d, int num, const struct dxil_value *val[]) dump_instr_print_operands() argument
|
/third_party/openssl/test/ |
H A D | cmp_ctx_test.c | 481 static void char_free(char *val) in char_free() argument 483 OPENSSL_free(val); in char_free() 578 static int OSSL_CMP_CTX_##SETN##_##FIELD##_##ARG(CMP_CTX *ctx, T val) \ 580 return OSSL_CMP_CTX_##SETN##_##FIELD(ctx, ARG, val); \ 589 static int OSSL_CMP_CTX_##SETN##_##FIELD##_str(CMP_CTX *ctx, char *val)\ 591 return OSSL_CMP_CTX_##SETN##_##FIELD(ctx, (unsigned char *)val, \ 592 strlen(val)); \
|
/third_party/python/Lib/ |
H A D | functools.py | 995 val = cache.get(self.attrname, _NOT_FOUND) 996 if val is _NOT_FOUND: 999 val = cache.get(self.attrname, _NOT_FOUND) variable in cached_property.__get__.defines 1000 if val is _NOT_FOUND: 1001 val = self.func(instance) variable in cached_property.__get__.defines 1003 cache[self.attrname] = val 1010 return val
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/MCTargetDesc/ |
H A D | AArch64AddressingModes.h | 293 static inline uint64_t decodeLogicalImmediate(uint64_t val, unsigned regSize) { in decodeLogicalImmediate() argument 295 unsigned N = (val >> 12) & 1; in decodeLogicalImmediate() 296 unsigned immr = (val >> 6) & 0x3f; in decodeLogicalImmediate() 297 unsigned imms = val & 0x3f; in decodeLogicalImmediate() 321 static inline bool isValidDecodeLogicalImmediate(uint64_t val, in isValidDecodeLogicalImmediate() argument 324 unsigned N = (val >> 12) & 1; in isValidDecodeLogicalImmediate() 325 unsigned imms = val & 0x3f; in isValidDecodeLogicalImmediate()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | uniset_props.cpp | 854 double val = uprv_strtod(vname.data(), &end); in applyPropertyAlias() local 859 if (*end != 0 || !(0 <= val && val <= 255) || in applyPropertyAlias() 860 (v = (int32_t)val) != val) { in applyPropertyAlias() 876 double val = uprv_strtod(vname.data(), &end); in applyPropertyAlias() local 880 applyFilter(numericValueFilter, &val, in applyPropertyAlias()
|
/third_party/protobuf/src/google/protobuf/ |
H A D | map_field.h | 118 void SetStringValue(std::string val) { in SetStringValue() argument 120 *val_.string_value_.get_mutable() = std::move(val); in SetStringValue() 301 MapValueRef* val) = 0; 460 bool InsertOrLookupMapValue(const MapKey& map_key, MapValueRef* val) override; 556 bool InsertOrLookupMapValue(const MapKey& map_key, MapValueRef* val) override; 696 void SetValue(const void* val) { data_ = const_cast<void*>(val); } in SetValue() argument
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_peer/ |
H A D | eap_fast_pac.c | 800 u16 val; in eap_fast_load_pac_bin() local 815 val = WPA_GET_BE16(pos); in eap_fast_load_pac_bin() 817 if (val > end - pos) in eap_fast_load_pac_bin() 819 pac->pac_opaque_len = val; in eap_fast_load_pac_bin() 826 val = WPA_GET_BE16(pos); in eap_fast_load_pac_bin() 828 if (val > end - pos) in eap_fast_load_pac_bin() 830 pac->pac_info_len = val; in eap_fast_load_pac_bin()
|
H A D | eap_teap_pac.c | 804 u16 val; in eap_teap_load_pac_bin() local 819 val = WPA_GET_BE16(pos); in eap_teap_load_pac_bin() 821 if (val > end - pos) in eap_teap_load_pac_bin() 823 pac->pac_opaque_len = val; in eap_teap_load_pac_bin() 830 val = WPA_GET_BE16(pos); in eap_teap_load_pac_bin() 832 if (val > end - pos) in eap_teap_load_pac_bin() 834 pac->pac_info_len = val; in eap_teap_load_pac_bin()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_peer/ |
H A D | eap_fast_pac.c | 800 u16 val; in eap_fast_load_pac_bin() local 815 val = WPA_GET_BE16(pos); in eap_fast_load_pac_bin() 817 if (val > end - pos) in eap_fast_load_pac_bin() 819 pac->pac_opaque_len = val; in eap_fast_load_pac_bin() 826 val = WPA_GET_BE16(pos); in eap_fast_load_pac_bin() 828 if (val > end - pos) in eap_fast_load_pac_bin() 830 pac->pac_info_len = val; in eap_fast_load_pac_bin()
|
H A D | eap_teap_pac.c | 804 u16 val; in eap_teap_load_pac_bin() local 819 val = WPA_GET_BE16(pos); in eap_teap_load_pac_bin() 821 if (val > end - pos) in eap_teap_load_pac_bin() 823 pac->pac_opaque_len = val; in eap_teap_load_pac_bin() 830 val = WPA_GET_BE16(pos); in eap_teap_load_pac_bin() 832 if (val > end - pos) in eap_teap_load_pac_bin() 834 pac->pac_info_len = val; in eap_teap_load_pac_bin()
|
/third_party/libunwind/libunwind/include/tdep-x86_64/ |
H A D | dwarf-config.h | 52 unw_word_t val; member
|
/third_party/libunwind/libunwind/include/tdep-x86/ |
H A D | dwarf-config.h | 45 unw_word_t val; member
|
/third_party/libunwind/libunwind/include/tdep-s390x/ |
H A D | dwarf-config.h | 47 unw_word_t val; member
|
/third_party/libunwind/libunwind/include/tdep-tilegx/ |
H A D | dwarf-config.h | 44 unw_word_t val; member
|
/third_party/libunwind/libunwind/include/tdep-arm/ |
H A D | dwarf-config.h | 44 unw_word_t val; member
|