Home
last modified time | relevance | path

Searched refs:val (Results 951 - 975 of 5337) sorted by relevance

1...<<31323334353637383940>>...214

/third_party/protobuf/conformance/
H A DConformanceJavaLite.java67 private void writeLittleEndianIntToStdout(int val) throws Exception { in writeLittleEndianIntToStdout() argument
69 buf[0] = (byte)val; in writeLittleEndianIntToStdout()
70 buf[1] = (byte)(val >> 8); in writeLittleEndianIntToStdout()
71 buf[2] = (byte)(val >> 16); in writeLittleEndianIntToStdout()
72 buf[3] = (byte)(val >> 24); in writeLittleEndianIntToStdout()
/third_party/openssl/crypto/x509/
H A Dv3_bitst.c62 CONF_VALUE *val; in v2i_ASN1_BIT_STRING() local
71 val = sk_CONF_VALUE_value(nval, i); in v2i_ASN1_BIT_STRING()
73 if (strcmp(bnam->sname, val->name) == 0 in v2i_ASN1_BIT_STRING()
74 || strcmp(bnam->lname, val->name) == 0) { in v2i_ASN1_BIT_STRING()
85 "%s", val->name); in v2i_ASN1_BIT_STRING()
H A Dv3_extku.c76 CONF_VALUE *val;
88 val = sk_CONF_VALUE_value(nval, i);
89 if (val->value)
90 extval = val->value;
92 extval = val->name;
/third_party/toybox/toys/posix/
H A Dulimit.c109 rlim_t val; in ulimit_main() local
111 if (tolower(**toys.optargs) == 'u') val = RLIM_INFINITY; in ulimit_main()
112 else val = atolx_range(*toys.optargs, 0, LONG_MAX); in ulimit_main()
114 if (FLAG(H)) rr.rlim_max = val; in ulimit_main()
115 else rr.rlim_cur = val; in ulimit_main()
/third_party/backends/backend/
H A Dcanon.c553 strcmp (filmtype_list[1], s->val[OPT_NEGATIVE].s) in do_gamma()
554 : s->val[OPT_HNEGATIVE].w; in do_gamma()
556 if (!strcmp (s->val[OPT_MODE].s, SANE_VALUE_SCAN_MODE_GRAY)) in do_gamma()
589 from = (s->val[OPT_CUSTOM_GAMMA_BIND].w) ? 0 : i; in do_gamma()
710 /* s->val[OPT_AF_NOW].w == SANE_TRUE; */ in attach()
1076 if (s->val[OPT_EJECT_AFTERSCAN].w && !(s->val[OPT_PREVIEW].w in do_cancel()
1137 memset (s->val, 0, sizeof (s->val)); in init_options()
1151 s->val[OPT_NUM_OPT in init_options()
[all...]
/drivers/interface/camera/sequenceable/map_data/
H A Dmap_data_sequenceable.cpp99 auto pVal = std::any_cast<int32_t>(&data.val); in Marshalling()
106 auto pVal = std::any_cast<int64_t>(&data.val); in Marshalling()
113 auto pVal = std::any_cast<double>(&data.val); in Marshalling()
120 auto pVal = std::any_cast<std::string>(&data.val); in Marshalling()
183 auto pVal = std::any_cast<T>(&it->second.val); in Get()
191 int32_t MapDataSequenceable::Set(const std::string &key, MapDataType type, const std::any& val) in Set() argument
200 datas_[key].val = val; in Set()
/third_party/ffmpeg/libavcodec/
H A Dmss1.c71 int val = (((c->value - c->low + 1) << bits) - 1) / range; in arith_get_bits() local
72 int prob = range * val; in arith_get_bits()
79 return val; in arith_get_bits()
85 int val = ((c->value - c->low + 1) * mod_val - 1) / range; in arith_get_number() local
86 int prob = range * val; in arith_get_number()
93 return val; in arith_get_number()
99 int val = ((c->value - c->low + 1) * probs[0] - 1) / range; in arith_get_prob() local
102 while (probs[sym] > val) in arith_get_prob()
/third_party/ffmpeg/libavformat/
H A Davio.h429 void avio_wl64(AVIOContext *s, uint64_t val);
430 void avio_wb64(AVIOContext *s, uint64_t val);
431 void avio_wl32(AVIOContext *s, unsigned int val);
432 void avio_wb32(AVIOContext *s, unsigned int val);
433 void avio_wl24(AVIOContext *s, unsigned int val);
434 void avio_wb24(AVIOContext *s, unsigned int val);
435 void avio_wl16(AVIOContext *s, unsigned int val);
436 void avio_wb16(AVIOContext *s, unsigned int val);
H A Doptions.c76 void *val = (void*)(((uintptr_t)*iter) & ((1 << ITER_STATE_SHIFT) - 1)); in format_child_class_iterate() local
89 while ((ofmt = av_muxer_iterate(&val))) { in format_child_class_iterate()
95 val = NULL; in format_child_class_iterate()
102 while ((ifmt = av_demuxer_iterate(&val))) { in format_child_class_iterate()
107 val = NULL; in format_child_class_iterate()
112 // make sure none av_(de)muxer_iterate does not set the high bits of val in format_child_class_iterate()
113 av_assert0(!((uintptr_t)val >> ITER_STATE_SHIFT)); in format_child_class_iterate()
114 *iter = (void*)((uintptr_t)val | (state << ITER_STATE_SHIFT)); in format_child_class_iterate()
345 int val; in av_disposition_to_string() local
350 val in av_disposition_to_string()
[all...]
/third_party/lzma/CPP/7zip/UI/Common/
H A DHashCalc.h154 bool ParseFlagCharOption(wchar_t c, bool val) in ParseFlagCharOption()
157 if (c == 'z') HashMode_Zero.SetVal_as_Defined(val); in ParseFlagCharOption()
158 else if (c == 't') HashMode_Tag.SetVal_as_Defined(val); in ParseFlagCharOption()
159 else if (c == 'd') HashMode_Dirs.SetVal_as_Defined(val); in ParseFlagCharOption()
160 else if (c == 'h') HashMode_OnlyHash.SetVal_as_Defined(val); in ParseFlagCharOption()
170 bool val = true; in ParseString() local
176 val = false; in ParseString()
180 if (!ParseFlagCharOption(c, val)) in ParseString()
/third_party/node/lib/internal/dns/
H A Dutils.js89 return ArrayPrototypeMap(this._handle.getServers() || [], (val) => {
90 if (!val[1] || val[1] === IANA_DNS_PORT)
91 return val[0];
93 const host = isIP(val[0]) === 6 ? `[${val[0]}]` : val[0];
94 return `${host}:${val[1]}`;
/third_party/node/test/parallel/
H A Dtest-util-promisify.js109 function fn(err, val, callback) {
110 callback(err, val);
118 function fn(err, val, callback) {
119 callback(err, val);
127 function fn(err, val, callback) {
128 callback(err, val);
146 o.fn().then(common.mustCall((val) => assert(val)));
/third_party/node/deps/v8/third_party/zlib/contrib/optimizations/
H A Dinffast_chunk.c149 Tracevv((stderr, here->val >= 0x20 && here->val < 0x7f ?
151 "inflate: literal 0x%02x\n", here->val));
152 *out++ = (unsigned char)(here->val);
155 len = (unsigned)(here->val);
192 dist = (unsigned)(here->val);
298 here = dcode + here->val + (hold & ((1U << op) - 1));
308 here = lcode + here->val + (hold & ((1U << op) - 1));
/third_party/node/deps/v8/third_party/zlib/
H A Dinffast.c121 Tracevv((stderr, here->val >= 0x20 && here->val < 0x7f ?
123 "inflate: literal 0x%02x\n", here->val));
124 *out++ = (unsigned char)(here->val);
127 len = (unsigned)(here->val);
152 dist = (unsigned)(here->val);
271 here = dcode + here->val + (hold & ((1U << op) - 1));
281 here = lcode + here->val + (hold & ((1U << op) - 1));
/third_party/node/deps/zlib/
H A Dinffast.c118 Tracevv((stderr, here->val >= 0x20 && here->val < 0x7f ? in inflate_fast()
120 "inflate: literal 0x%02x\n", here->val)); in inflate_fast()
121 *out++ = (unsigned char)(here->val); in inflate_fast()
124 len = (unsigned)(here->val); in inflate_fast()
149 dist = (unsigned)(here->val); in inflate_fast()
268 here = dcode + here->val + (hold & ((1U << op) - 1)); in inflate_fast()
278 here = lcode + here->val + (hold & ((1U << op) - 1)); in inflate_fast()
/third_party/skia/third_party/externals/zlib/contrib/optimizations/
H A Dinffast_chunk.c149 Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
151 "inflate: literal 0x%02x\n", here.val));
152 *out++ = (unsigned char)(here.val);
155 len = (unsigned)(here.val);
192 dist = (unsigned)(here.val);
298 here = dcode[here.val + (hold & ((1U << op) - 1))];
308 here = lcode[here.val + (hold & ((1U << op) - 1))];
/third_party/skia/third_party/externals/zlib/
H A Dinffast.c121 Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
123 "inflate: literal 0x%02x\n", here.val));
124 *out++ = (unsigned char)(here.val);
127 len = (unsigned)(here.val);
152 dist = (unsigned)(here.val);
271 here = dcode[here.val + (hold & ((1U << op) - 1))];
281 here = lcode[here.val + (hold & ((1U << op) - 1))];
/third_party/typescript/tests/baselines/reference/
H A DdeclFileGenericType.js17 constructor(public val: T) { }
29 export var x = (new C.D<C.A<C.B>>(new C.A<C.B>())).val;
88 function D(val) {
89 this.val = val;
99 exports.x = (new C.D(new C.A())).val;
127 val: T;
128 constructor(val: T);
/third_party/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_map_field.cc58 const FieldDescriptor* val = in SetMessageVariables() local
61 switch (val->cpp_type()) { in SetMessageVariables()
63 (*variables)["val_cpp"] = FieldMessageTypeName(val, options); in SetMessageVariables()
66 (*variables)["val_cpp"] = ClassName(val->enum_type(), true); in SetMessageVariables()
69 (*variables)["val_cpp"] = PrimitiveTypeName(options, val->cpp_type()); in SetMessageVariables()
74 "TYPE_" + ToUpper(DeclaredTypeMethodName(val->type())); in SetMessageVariables()
85 if (!IsProto3Field(descriptor) && val->type() == FieldDescriptor::TYPE_ENUM) { in SetMessageVariables()
86 const EnumValueDescriptor* default_value = val->default_value_enum(); in SetMessageVariables()
/third_party/rust/crates/syn/codegen/src/
H A Dvisit.rs40 let val = visit(t, features, defs, &operand)?; in visit()
44 #val; in visit()
50 let val = visit(&p.element, features, defs, &operand)?; in visit()
55 #val; in visit()
61 let val = visit(t, features, defs, &it)?; in visit()
65 #val; in visit()
75 let val = visit(elem, features, defs, &it).unwrap_or_else(|| noop_visit(&it)); in visit()
76 code.extend(val); in visit()
/third_party/zlib/
H A Dinffast.c114 Tracevv((stderr, here->val >= 0x20 && here->val < 0x7f ? in inflate_fast()
116 "inflate: literal 0x%02x\n", here->val)); in inflate_fast()
117 *out++ = (unsigned char)(here->val); in inflate_fast()
120 len = (unsigned)(here->val); in inflate_fast()
145 dist = (unsigned)(here->val); in inflate_fast()
264 here = dcode + here->val + (hold & ((1U << op) - 1)); in inflate_fast()
274 here = lcode + here->val + (hold & ((1U << op) - 1)); in inflate_fast()
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
H A DReactor.hpp302 Value *value() const { return val; } in value()
305 Value *const val; member in rr::RValue
312 explicit Argument(Value *val) in Argument() argument
313 : val(val) in Argument()
316 RValue<T> rvalue() const { return RValue<T>(val); } in rvalue()
319 Value *const val; member in rr::Argument
341 RValue<Bool> operator!(RValue<Bool> val);
391 RValue<Byte> operator+(RValue<Byte> val);
392 RValue<Byte> operator-(RValue<Byte> val);
3232 ReinterpretCast(RValue<S> val) ReinterpretCast() argument
3242 Value *val = var.loadValue(); ReinterpretCast() local
3254 As(Value *val) As() argument
3261 As(RValue<S> val) As() argument
3273 As(const Reference<S> &val) As() argument
[all...]
/third_party/curl/tests/libtest/
H A Dmk-lib1521.pl114 static int err(const char *name, CURLcode val, int lineno)
117 name, val, curl_easy_strerror(val), lineno);
118 return (int)val;
121 static int geterr(const char *name, CURLcode val, int lineno)
124 name, val, curl_easy_strerror(val), lineno);
125 return (int)val;
166 long val;
236 my ($name, $type, $val)
[all...]
/third_party/libunwind/libunwind/src/riscv/
H A DGinit.c333 access_mem (unw_addr_space_t as, unw_word_t addr, unw_word_t *val, int write, in access_mem() argument
338 Debug (16, "mem[%p] <- %lx\n", addr, *val); in access_mem()
339 *(unw_word_t *) (intptr_t) addr = *val; in access_mem()
351 *val = *(unw_word_t *) addr; in access_mem()
352 Debug (16, "mem[%lx] -> %lx\n", addr, *val); in access_mem()
358 access_reg (unw_addr_space_t as, unw_regnum_t reg, unw_word_t *val, int write, in access_reg() argument
373 *addr = *val; in access_reg()
374 Debug (12, "%s <- %lx\n", unw_regname (reg), *val); in access_reg()
378 *val = *(unw_word_t *) addr; in access_reg()
379 Debug (12, "%s -> %lx\n", unw_regname (reg), *val); in access_reg()
[all...]
/third_party/mesa3d/src/compiler/nir/
H A Dnir_opt_large_constants.c105 nir_deref_instr *deref, nir_const_value *val, in handle_constant_store()
133 ((int32_t *)dst)[i] = -(int)val[i].b; in handle_constant_store()
137 ((uint8_t *)dst)[i] = val[i].u8; in handle_constant_store()
141 ((uint16_t *)dst)[i] = val[i].u16; in handle_constant_store()
145 ((uint32_t *)dst)[i] = val[i].u32; in handle_constant_store()
149 ((uint64_t *)dst)[i] = val[i].u64; in handle_constant_store()
263 nir_const_value *val = nir_src_as_const_value(intrin->src[1]); in nir_opt_large_constants() local
264 handle_constant_store(var_infos, info, dst_deref, val, writemask, in nir_opt_large_constants()
364 nir_ssa_def *val = build_constant_load(&b, deref, size_align); in nir_opt_large_constants() local
366 val); in nir_opt_large_constants()
104 handle_constant_store(void *mem_ctx, struct var_info *info, nir_deref_instr *deref, nir_const_value *val, unsigned writemask, glsl_type_size_align_func size_align) handle_constant_store() argument
[all...]

Completed in 16 milliseconds

1...<<31323334353637383940>>...214