/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_opt_constant_folding.c | 220 nir_ssa_def *val = nir_build_imm(b, intrin->dest.ssa.num_components, in try_fold_intrinsic() local 222 nir_ssa_def_rewrite_uses(&intrin->dest.ssa, val); in try_fold_intrinsic() 243 nir_ssa_def *val; in try_fold_intrinsic() local 245 val = nir_ssa_undef(b, intrin->dest.ssa.num_components, in try_fold_intrinsic() 258 val = nir_build_imm(b, intrin->dest.ssa.num_components, in try_fold_intrinsic() 261 nir_ssa_def_rewrite_uses(&intrin->dest.ssa, val); in try_fold_intrinsic()
|
H A D | nir_lower_flrp.c | 227 nir_const_value *val = nir_src_as_const_value(instr->src[src].src); in all_same_constant() local 229 if (!val) in all_same_constant() 236 const float first = val[swizzle[0]].f32; in all_same_constant() 239 if (val[swizzle[i]].f32 != first) in all_same_constant() 245 const double first = val[swizzle[0]].f64; in all_same_constant() 248 if (val[swizzle[i]].f64 != first) in all_same_constant()
|
/third_party/libwebsockets/lib/secure-streams/system/auth-sigv4/ |
H A D | sign.c | 471 char *str = NULL, *val = NULL, *line = NULL, sth[128]; in lws_aws_filesystem_credentials_helper() local 533 val = malloc(slen + 1); in lws_aws_filesystem_credentials_helper() 534 if (!val) in lws_aws_filesystem_credentials_helper() 537 strncpy(val, str, slen); in lws_aws_filesystem_credentials_helper() 538 val[slen] = '\0'; in lws_aws_filesystem_credentials_helper() 540 *(i ? aws_keyid : aws_key) = val; in lws_aws_filesystem_credentials_helper()
|
/third_party/ltp/testcases/kernel/fs/ftest/ |
H A D | ftest07.c | 280 char val; in dotest() local 347 val = (64 / testers) * me + 1; in dotest() 358 * verify = val. in dotest() 359 * write "val" on it. in dotest() 361 * ++val. in dotest() 376 /* Have to fill the val and zero iov buffers in a different manner in dotest() 379 memset(val_iovec[i].iov_base, val, in dotest() 425 "\tTest[%d] bad verify @ 0x%Lx for val %d count %d xfr %d file_max 0x%llx, should be 0.", in dotest() 426 me, CHUNK(chunk), val, in dotest() 453 "\tTest[%d]: xfr=%d != %d, val rea in dotest() [all...] |
H A D | ftest03.c | 280 char val; in dotest() local 347 val = (64 / testers) * me + 1; in dotest() 358 * verify = val. in dotest() 359 * write "val" on it. in dotest() 361 * ++val. in dotest() 379 /* Have to fill the val and zero iov buffers in a different manner in dotest() 382 memset(val_iovec[i].iov_base, val, in dotest() 430 "\tTest[%d] bad verify @ 0x%x for val %d count %d xfr %d file_max 0x%x, should be 0.", in dotest() 431 me, CHUNK(chunk), val, in dotest() 458 "\tTest[%d]: xfr=%d != %d, val rea in dotest() [all...] |
/third_party/mesa3d/src/gallium/drivers/vc4/kernel/ |
H A D | vc4_render_cl.c | 49 static inline void rcl_u8(struct vc4_rcl_setup *setup, u8 val) in rcl_u8() argument 51 *(u8 *)(setup->rcl->vaddr + setup->next_offset) = val; in rcl_u8() 55 static inline void rcl_u16(struct vc4_rcl_setup *setup, u16 val) in rcl_u16() argument 57 *(u16 *)(setup->rcl->vaddr + setup->next_offset) = val; in rcl_u16() 61 static inline void rcl_u32(struct vc4_rcl_setup *setup, u32 val) in rcl_u32() argument 63 *(u32 *)(setup->rcl->vaddr + setup->next_offset) = val; in rcl_u32()
|
/third_party/node/deps/icu-small/source/common/ |
H A D | uloc_keytype.cpp | 365 isSpecialTypeCodepoints(const char* val) { in isSpecialTypeCodepoints() argument 367 const char* p = val; in isSpecialTypeCodepoints() 387 isSpecialTypeReorderCode(const char* val) { in isSpecialTypeReorderCode() argument 389 const char* p = val; in isSpecialTypeReorderCode() 407 isSpecialTypeRgKeyValue(const char* val) { in isSpecialTypeRgKeyValue() argument 409 const char* p = val; in isSpecialTypeRgKeyValue()
|
/third_party/libwebsockets/win32port/zlib/ |
H A D | gzread.c | 78 unsigned long val;
local 81 val = NEXT();
82 val += (unsigned)NEXT() << 8;
83 val += (unsigned long)NEXT() << 16;
87 val += (unsigned long)ch << 24;
88 *ret = val;
|
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
H A D | lp_bld_logic.c | 492 * Return (scalar-cast)val ? true : false; 497 LLVMValueRef val) in lp_build_any_true_range() 509 val = LLVMBuildBitCast(builder, val, scalar_type, ""); in lp_build_any_true_range() 516 val = LLVMBuildTrunc(builder, val, true_type, ""); in lp_build_any_true_range() 519 val, LLVMConstNull(true_type), ""); in lp_build_any_true_range() 495 lp_build_any_true_range(struct lp_build_context *bld, unsigned real_length, LLVMValueRef val) lp_build_any_true_range() argument
|
/third_party/mksh/ |
H A D | os2.c | 175 char val[512]; in init_extlibpath() local 179 DosQueryExtLIBPATH(val, flag + 1); in init_extlibpath() 180 if (val[0]) in init_extlibpath() 181 setenv(vars[flag], val, 1); in init_extlibpath() 211 setextlibpath(const char *name, const char *val) in setextlibpath() argument 226 strdupx(cp, val, ATEMP); in setextlibpath()
|
/third_party/node/deps/openssl/openssl/apps/ |
H A D | openssl.c | 198 char *val; in setup_trace() local 208 val = OPENSSL_strdup(str); in setup_trace() 210 if (val != NULL) { in setup_trace() 211 char *valp = val; in setup_trace() 214 for (valp = val; (item = strtok(valp, ",")) != NULL; valp = NULL) { in setup_trace() 230 OPENSSL_free(val); in setup_trace()
|
/third_party/rust/crates/clap/src/parser/ |
H A D | validator.rs | 228 let is_relevant = |(val, req_arg): &(ArgPredicate, Id)| -> Option<Id> { in gather_requires() 229 let required = matched.check_explicit(val); in gather_requires() 309 for (other, val) in &a.r_ifs { in validate_required() 310 if matcher.check_explicit(other, &ArgPredicate::Equals(val.into())) { in validate_required() 319 let match_all = a.r_ifs_all.iter().all(|(other, val)| { in validate_required() 320 matcher.check_explicit(other, &ArgPredicate::Equals(val.into())) in validate_required()
|
/third_party/python/Lib/distutils/ |
H A D | util.py | 308 def strtobool (val): 313 'val' is anything else. 315 val = val.lower() 316 if val in ('y', 'yes', 't', 'true', 'on', '1'): 318 elif val in ('n', 'no', 'f', 'false', 'off', '0'): 321 raise ValueError("invalid truth value %r" % (val,))
|
/third_party/pulseaudio/src/tests/ |
H A D | resampler-rewind-test.c | 144 float val; in generate_block() local 158 val = amplitude; in generate_block() 164 d[i] = val; in generate_block() 168 if (val >= amplitude) in generate_block() 169 val = - amplitude; in generate_block() 171 val = amplitude; in generate_block()
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
H A D | EmulatedIntrinsics.cpp | 84 void scatter(RValue<Pointer<EL>> base, RValue<T> val, RValue<Int4> offsets, RValue<Int4> mask, unsigned int alignment) 96 Store(Extract(val, i), Pointer<EL>(&baseBytePtr[offset]), alignment, atomic, order); 144 void Scatter(RValue<Pointer<Float>> base, RValue<Float4> val, RValue<Int4> offsets, RValue<Int4> mask, unsigned int alignment) 146 scatter(base, val, offsets, mask, alignment); 149 void Scatter(RValue<Pointer<Int>> base, RValue<Int4> val, RValue<Int4> offsets, RValue<Int4> mask, unsigned int alignment) 151 scatter<Int4>(base, val, offsets, mask, alignment);
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | constants.cpp | 423 uint32_t ConstantManager::GetFloatConst(float val) { in GetFloatConst() argument 425 utils::FloatProxy<float> v(val); in GetFloatConst() 430 uint32_t ConstantManager::GetSIntConst(int32_t val) { in GetSIntConst() argument 432 const Constant* c = GetConstant(sint_type, {static_cast<uint32_t>(val)}); in GetSIntConst() 436 uint32_t ConstantManager::GetUIntConst(uint32_t val) { in GetUIntConst() argument 438 const Constant* c = GetConstant(uint_type, {val}); in GetUIntConst()
|
/third_party/openssl/apps/ |
H A D | openssl.c | 198 char *val; in setup_trace() local 208 val = OPENSSL_strdup(str); in setup_trace() 210 if (val != NULL) { in setup_trace() 211 char *valp = val; in setup_trace() 214 for (valp = val; (item = strtok(valp, ",")) != NULL; valp = NULL) { in setup_trace() 230 OPENSSL_free(val); in setup_trace()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-cff-interp-common.hh | 560 VAL *val = values.push (); in add_op() local 561 val->op = op; in add_op() 562 val->str = str_ref.str.sub_str (opStart, str_ref.offset - opStart); in add_op() 568 VAL *val = values.push (v); in add_op() local 569 val->op = op; in add_op() 570 val->str = str_ref.sub_str ( opStart, str_ref.offset - opStart); in add_op()
|
H A D | hb-ot-cff2-table.hh | 160 dict_val_t val; in process_op() local 161 val.init (); in process_op() 278 num_dict_val_t val; in process_op() local 279 val.init (); in process_op() 289 val.single_val = env.argStack.pop_num (); in process_op() 320 dictval.add_op (op, env.str_ref, val); in process_op()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/XCore/ |
H A D | XCoreRegisterInfo.cpp | 48 static inline bool isImmUs(unsigned val) { in isImmUs() argument 49 return val <= 11; in isImmUs() 52 static inline bool isImmU6(unsigned val) { in isImmU6() argument 53 return val < (1 << 6); in isImmU6() 56 static inline bool isImmU16(unsigned val) { in isImmU16() argument 57 return val < (1 << 16); in isImmU16()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | uloc_keytype.cpp | 363 isSpecialTypeCodepoints(const char* val) { in isSpecialTypeCodepoints() argument 365 const char* p = val; in isSpecialTypeCodepoints() 385 isSpecialTypeReorderCode(const char* val) { in isSpecialTypeReorderCode() argument 387 const char* p = val; in isSpecialTypeReorderCode() 405 isSpecialTypeRgKeyValue(const char* val) { in isSpecialTypeRgKeyValue() argument 407 const char* p = val; in isSpecialTypeRgKeyValue()
|
/third_party/protobuf/js/binary/ |
H A D | decoder_test.js | 117 var val = filter(cursor); 118 writeValue.call(encoder, val); 119 inputValues.push(val); 124 var val = filter(cursor); 125 writeValue.call(encoder, val); 126 inputValues.push(val);
|
/third_party/python/Modules/ |
H A D | nismodule.c | 137 PyObject *val; in nis_foreach() local 148 val = PyUnicode_DecodeFSDefaultAndSize(inval, invallen); in nis_foreach() 149 if (key == NULL || val == NULL) { in nis_foreach() 153 Py_XDECREF(val); in nis_foreach() 157 err = PyDict_SetItem(indata->dict, key, val); in nis_foreach() 159 Py_DECREF(val); in nis_foreach()
|
/third_party/protobuf/php/tests/ |
H A D | MapFieldTest.php | 67 foreach ($arr as $key => $val) { 68 $this->assertSame($key, $val); 394 foreach ($arr as $key => $val) { 395 $this->assertSame($key, $val); 431 foreach ($arr as $key => $val) { 433 $value_test[] = $val->getA();
|
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | generator_test.py | 93 def isnan(val): 95 return val != val 96 def isinf(val): 98 return not isnan(val) and isnan(val * 0)
|