Searched defs:val (Results 176 - 200 of 2316) sorted by relevance

1234567891011>>

/external/clang/test/CodeGenCXX/
H A Dthrow-expressions.cpp3 int val = 42; variable
5 return throw val, val;
9 return val ? throw val : val;
19 return 1 ? throw val : val;
97 cond ? throw test7 : val;
112 // CHECK: ret i32* @val
[all...]
/external/clang/test/Parser/
H A Dcxx-reference.cpp8 int val; variable
18 int & const X = val; // expected-error {{'const' qualifier may not be applied to a reference}}
19 int & volatile Y = val; // expected-error {{'volatile' qualifier may not be applied to a reference}}
20 int & const volatile Z = val; /* expected-error {{'const' qualifier may not be applied}} \
/external/clang/test/Sema/
H A Dformat-strings-ms.c22 short val = 30; local
23 printf("val = %I64d\n", val); // expected-warning{{format specifies type '__int64' (aka 'long long') but the argument has type 'short'}}
25 printf("val = %I32d\n", bigval); // expected-warning{{format specifies type '__int32' (aka 'int') but the argument has type 'long long'}}
26 printf("val = %Id\n", bigval); // expected-warning{{format specifies type '__int32' (aka 'int') but the argument has type 'long long'}}
30 unsigned short val = 30; local
31 printf("val = %I64u\n", val); // expected-warning{{format specifies type 'unsigned __int64' (aka 'unsigned long long') but the argument has type 'unsigned short'}}
33 printf("val = %I32u\n", bigval); // expected-warning{{format specifies type 'unsigned __int32' (aka 'unsigned int') but the argument has type 'unsigned long long'}}
34 printf("val
[all...]
H A Dwarn-char-subscripts.c6 int val = array[subscript]; // expected-warning{{array subscript is of type 'char'}} local
12 int val = subscript[array]; // expected-warning{{array subscript is of type 'char'}} local
18 int val = array[subscript]; // expected-warning{{array subscript is of type 'char'}} local
24 int val = subscript[array]; // expected-warning{{array subscript is of type 'char'}} local
30 int val = array[returnsChar()]; // expected-warning{{array subscript is of type 'char'}} local
36 int val = array[subscript]; // no warning for explicit signed char local
42 int val = array[subscript]; // no warning for unsigned char local
49 int val = array[subscript]; // expected-warning{{array subscript is of type 'char'}} local
56 int val = array[subscript]; // no warning for explicit signed char local
63 int val local
[all...]
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_atomic_test.cc33 ValAndMagic<T> val; local
35 ValAndMagic<T>::sink = &val;
37 val.magic0 = val.magic1 = (Type)-3;
44 val.a.val_dont_use = (Type)v;
45 EXPECT_EQ(atomic_load(&val.a, load_mo), (Type)v);
46 val.a.val_dont_use = (Type)-1;
47 atomic_store(&val.a, (Type)v, store_mo);
48 EXPECT_EQ(val.a.val_dont_use, (Type)v);
50 EXPECT_EQ(val
[all...]
H A Dsanitizer_printf_test.cc67 uptr val; local
68 if (sizeof(val) == 4) {
69 val = (uptr)0x12345678;
71 val = (uptr)0x123456789ULL;
73 internal_snprintf(buf, 4, "a%zx", val); // NOLINT
/external/compiler-rt/test/asan/TestCases/
H A Dintra-object-overflow.cc15 void set(int i, int val) { a[i] = val; } argument
H A Duse-after-scope-dtor-order.cc7 explicit IntHolder(int *val = 0) : val_(val) { }
13 void set(int *val) { val_ = val; } argument
/external/curl/docs/examples/
H A Dhref_extractor.c55 char tag[1], attr[4], val[128]; local
72 html_parser_set_val_buffer(hsp, val, sizeof(val)-1);
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkSpirVProgram.hpp72 SpirVAsmSource& operator<< (SpirVAsmSource& src, const T& val) argument
74 src.source += de::toString(val);
/external/deqp/framework/common/
H A DtcuSeedBuilder.cpp74 const deUint8 val = (value ? 54: 7); local
76 builder.feed(sizeof(val), &val); local
82 const deInt8 val = value ^ 75; local
84 builder.feed(sizeof(val), &val); local
90 const deUint8 val = value ^ 140u; local
92 builder.feed(sizeof(val), &val); local
98 const deInt16 val local
111 const deUint16 val = value ^ 37323u; local
124 const deInt32 val = value ^ 53054741; local
139 const deUint32 val = value ^ 1977303630u; local
154 const deInt64 val = value ^ 772935234179004386ll; local
174 const deUint64 val = value ^ 4664937258000467599ull; local
195 deUint32 val; local
216 deUint64 val; local
[all...]
/external/deqp/framework/delibs/debase/
H A DdeInt32Test.c46 deUint32 val = (1u << RCP_LUT_BITS) | (deUint32)ndx; local
47 deUint32 rcp = (deUint32)((1u << DE_RCP_FRAC_BITS) / ((double)val / (1<<RCP_LUT_BITS)));
132 deUint32 val = (1u<<numBits); local
133 deRcp32(val, &rcp, &exp);
149 deUint32 val = (deRandom_getUint32(&rnd) & ((1u<<numBits)-1)) | (1u<<numBits); local
150 deUint32 ref = (deUint32)(((1.0f / (double)val) * (double)(1<<DE_RCP_FRAC_BITS)) * (double)(1u<<numBits));
152 deRcp32(val, &rcp, &exp);
H A DdeRandom.c102 deUint32 val = deRandom_getUint32(rnd); local
103 return ((val & 0xFFFFFF) < 0x800000);
/external/deqp/framework/delibs/depool/
H A DdePoolHash.c51 const int* val = deTestHash_find(hash, (deInt16)i); local
52 DE_TEST_ASSERT(!val);
64 const int* val = deTestHash_find(hash, (deInt16)i); local
65 DE_TEST_ASSERT(val && (*val == -i));
75 const int* val = deTestHash_find(hash, (deInt16)i); local
77 DE_TEST_ASSERT(val && (*val == -i));
79 DE_TEST_ASSERT(!val);
88 const int* val local
103 int val = deTestHashIter_getValue(&testIter); local
135 int val = deTestIntArray_get(valueArray, ndx); local
[all...]
/external/drm_hwcomposer/tests/
H A Dworker_test.cpp72 int val = worker.value; local
76 ASSERT_EQ(val, worker.value);
83 val = worker.value;
85 ASSERT_EQ(val, worker.value);
90 ASSERT_NE(val, worker.value);
94 val = worker.value;
99 ASSERT_EQ(val, worker.value);
/external/eigen/unsupported/Eigen/src/Polynomials/
H A DPolynomialUtils.h30 T val=poly[poly.size()-1]; local
32 val = val*x + poly[i]; }
33 return val;
54 T val=poly[0]; local
57 val = val*inv_x + poly[i]; }
59 return numext::pow(x,(T)(poly.size()-1)) * val;
/external/eigen/unsupported/test/
H A Dcxx11_tensor_expr.cpp115 float val = 1.0f; local
119 mat1(i,j,k) = val;
120 mat2(i,j,k) = val;
121 val += 1.0f;
145 val = 1.0f;
149 VERIFY_IS_APPROX(mat3(i,j,k), val + val); local
150 VERIFY_IS_APPROX(mat4(i,j,k), val * 3.14f);
151 VERIFY_IS_APPROX(mat5(i,j,k), logf(1.0f/val));
152 VERIFY_IS_APPROX(mat6(i,j,k), sqrtf(val) * 3.1
170 float val = 1.0f; local
[all...]
/external/elfutils/libdw/
H A Ddwarf_func_inline.c73 Dwarf_Word val; local
76 &val) == 0)
77 switch (val)
/external/fio/lib/
H A Dbswap.h7 static inline uint32_t __be32_to_cpu(uint32_t val) argument
11 c1 = (val >> 24) & 0xff;
12 c2 = (val >> 16) & 0xff;
13 c3 = (val >> 8) & 0xff;
14 c4 = val & 0xff;
19 static inline uint64_t __be64_to_cpu(uint64_t val) argument
23 c1 = (val >> 56) & 0xff;
24 c2 = (val >> 48) & 0xff;
25 c3 = (val >> 40) & 0xff;
26 c4 = (val >> 3
35 __be64_to_cpu(uint64_t val) argument
40 __be32_to_cpu(uint32_t val) argument
[all...]
/external/icu/icu4c/source/tools/genrb/
H A Derrmsg.c38 U_CFUNC void setShowWarning(UBool val) argument
40 gShowWarning = val;
51 U_CFUNC void setStrict(UBool val){ argument
52 gStrict = val;
58 U_CFUNC void setVerbose(UBool val){ argument
59 gVerbose = val;
/external/iproute2/examples/bpf/
H A Dbpf_tailcall.c37 char fmt[] = "case1: map-val: %d from:%u\n";
38 int key = 0, *val; local
40 val = map_lookup_elem(&map_sh, &key);
41 if (val)
42 trace_printk(fmt, sizeof(fmt), *val, skb->cb[0]);
53 char fmt[] = "case2: map-val: %d from:%u\n";
54 int key = 0, *val; local
56 val = map_lookup_elem(&map_sh, &key);
57 if (val)
58 trace_printk(fmt, sizeof(fmt), *val, sk
70 int key = 0, *val; local
84 int key = 0, *val; local
[all...]
/external/iproute2/include/linux/tc_ematch/
H A Dtc_em_cmp.h8 __u32 val; member in struct:tcf_em_cmp
/external/iproute2/ip/
H A Diplink_bridge.c45 __u32 val; local
50 if (get_u32(&val, *argv, 0))
53 addattr32(n, 1024, IFLA_BR_FORWARD_DELAY, val);
56 if (get_u32(&val, *argv, 0))
59 addattr32(n, 1024, IFLA_BR_HELLO_TIME, val);
62 if (get_u32(&val, *argv, 0))
65 addattr32(n, 1024, IFLA_BR_MAX_AGE, val);
68 if (get_u32(&val, *argv, 0))
71 addattr32(n, 1024, IFLA_BR_AGEING_TIME, val);
74 if (get_u32(&val, *arg
[all...]
/external/iproute2/tipc/
H A Dcmdl.h34 char *val; member in struct:opt
/external/kernel-headers/original/uapi/linux/tc_ematch/
H A Dtc_em_cmp.h8 __u32 val; member in struct:tcf_em_cmp

Completed in 557 milliseconds

1234567891011>>