/external/apache-xml/src/main/java/org/apache/xpath/functions/ |
FuncQname.java | 48 XObject val; local 54 val = (null == qname) ? XString.EMPTYSTRING : new XString(qname); 58 val = XString.EMPTYSTRING; 61 return val;
|
/external/avahi/avahi-compat-howl/ |
text-test.c | 71 uint8_t val[255]; local 84 while (sw_text_record_iterator_next(it, key, val, &val_len) == SW_OKAY) { 86 hexdump(val, val_len);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
StreamUtil.java | 72 int val = length; local 74 while ((val >>>= 8) != 0)
|
/external/bsdiff/ |
extents.cc | 50 long long val = strtoll(s, (char**)&next_s, 10); local 51 if (((val == LLONG_MAX || val == LLONG_MIN) && errno == ERANGE) || 52 next_s == s || val < min_val || val > max_val || 55 *val_p = val;
|
/external/clang/test/Analysis/ |
unix-api.c | 46 int val; member in struct:__anon8398 56 int val; member in struct:__anon8399 58 fd = open(path, O_RDONLY, st.val); // no-warning
|
/external/clang/test/CodeGen/ |
x86_32-inline-asm.c | 25 uint64_t val = 0; local 29 "a" ((val & 0xFFFFFFFFUL)), // expected-error {{invalid input size for constraint 'a'}} 30 "d" (((val >> 32) & 0xFFFFFFFFUL))); 37 __asm__ volatile("outb %0, %w1" : : "R" (val), "Nd" (port)); // expected-error {{invalid input size for constraint 'R'}} 38 __asm__ volatile("outb %0, %w1" : : "q" (val), "Nd" (port)); // expected-error {{invalid input size for constraint 'q'}} 39 __asm__ volatile("outb %0, %w1" : : "Q" (val), "Nd" (port)); // expected-error {{invalid input size for constraint 'Q'}} 40 __asm__ volatile("outb %0, %w1" : : "b" (val), "Nd" (port)); // expected-error {{invalid input size for constraint 'b'}} 41 __asm__ volatile("outb %0, %w1" : : "c" (val), "Nd" (port)); // expected-error {{invalid input size for constraint 'c'}} 42 __asm__ volatile("outb %0, %w1" : : "d" (val), "Nd" (port)); // expected-error {{invalid input size for constraint 'd'}} 43 __asm__ volatile("outb %0, %w1" : : "S" (val), "Nd" (port)); // expected-error {{invalid input size for constraint 'S'} [all...] |
/external/clang/test/CodeGenCXX/ |
throw-expressions.cpp | 3 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/Sema/ |
warn-char-subscripts.c | 6 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 = array[subscript]; // no warning for unsigned cha local [all...] |
warn-unused-value.c | 96 int val = 0; local 98 (void)sizeof(++val); // expected-warning {{expression with side effects has no effect in an unevaluated context}} 99 (void)_Generic(val++, default : 0); // expected-warning {{expression with side effects has no effect in an unevaluated context}} 100 (void)_Alignof(val++); // expected-warning {{expression with side effects has no effect in an unevaluated context}} expected-warning {{'_Alignof' applied to an expression is a GNU extension}} 104 (void)sizeof(int[++val]); // Ok 105 (void)_Alignof(int[++val]); // Ok 108 GenTest(val++);
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
sanitizer_atomic_test.cc | 33 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.magic0, (Type)-3) [all...] |
/external/deqp/framework/delibs/debase/ |
deInt32Test.c | 46 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);
|
/external/deqp/framework/delibs/depool/ |
dePoolHash.c | 51 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 = deTestHash_find(hash, (deInt16)i) local 103 int val = deTestHashIter_getValue(&testIter); local 135 int val = deTestIntArray_get(valueArray, ndx); local [all...] |
/external/eigen/unsupported/Eigen/src/Polynomials/ |
PolynomialUtils.h | 30 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 std::pow(x,(T)(poly.size()-1)) * val;
|
/external/elfutils/libdw/ |
dwarf_func_inline.c | 73 Dwarf_Word val; local 76 &val) == 0) 77 switch (val)
|
/external/fio/lib/ |
zipf.c | 57 unsigned long long val; local 66 val = 1; 68 val = 2; 70 val = 1 + (unsigned long long)(n * pow(eta*rand_uni - eta + 1.0, alpha)); 72 return (__hash_u64(val - 1) + zs->rand_off) % zs->nranges;
|
/external/fio/t/ |
axmap.c | 38 uint64_t val; local 40 if (lfsr_next(&lfsr, &val)) { 45 if (axmap_isset(map, val)) { 50 axmap_set(map, val); 51 if (!axmap_isset(map, val)) { 76 uint64_t val = bit_off; local 83 while (val + 128 <= map_size) { 85 for (i = val; i < val + 128; i++) { 86 if (axmap_isset(map, val + i)) [all...] |
/external/google-breakpad/src/client/linux/minidump_writer/ |
proc_cpuinfo_reader.h | 83 const char* val = sep+1; local 84 while (val < line_end && my_isspace(*val)) 85 val++; 87 value_ = val; 88 value_len_ = static_cast<size_t>(line_end - val);
|
/external/gtest/include/gtest/ |
gtest-message.h | 115 inline Message& operator <<(const T& val) { 131 *ss_ << val; 165 Message& operator <<(BasicNarrowIoManip val) { 166 *ss_ << val; local
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
ICUConfig.java | 61 String val = null; local 65 val = AccessController.doPrivileged(new PrivilegedAction<String>() { 75 val = System.getProperty(name); 78 if (val == null) { 79 val = CONFIG_PROPS.getProperty(name, def); 81 return val;
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
ICUConfig.java | 59 String val = null; local 63 val = AccessController.doPrivileged(new PrivilegedAction<String>() { 73 val = System.getProperty(name); 76 if (val == null) { 77 val = CONFIG_PROPS.getProperty(name, def); 79 return val;
|
/external/iproute2/examples/bpf/ |
bpf_tailcall.c | 37 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, skb->cb[0]) 70 int key = 0, *val; local 84 int key = 0, *val; local [all...] |
/external/iproute2/include/linux/tc_ematch/ |
tc_em_cmp.h | 8 __u32 val; member in struct:tcf_em_cmp
|
/external/iproute2/ip/ |
iplink_bridge_slave.c | 56 static void print_onoff(FILE *f, char *flag, __u8 val) 58 fprintf(f, "%s %s ", flag, val ? "on" : "off"); 106 __u8 val; local 109 val = 1; 111 val = 0; 115 addattr8(n, 1024, type, val);
|
/external/iproute2/tipc/ |
cmdl.h | 34 char *val; member in struct:opt
|
/external/kernel-headers/original/uapi/linux/tc_ematch/ |
tc_em_cmp.h | 8 __u32 val; member in struct:tcf_em_cmp
|