HomeSort by relevance Sort by last modified time
    Searched defs:val (Results 126 - 150 of 4505) sorted by null

1 2 3 4 56 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
inftrees.h 21 of the bit buffer. val is the actual byte to output in the case
27 unsigned short val; /* offset in table or code value */ member in struct:__anon4834
  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmLib/
ArmLib.c 30 UINT32 val = ArmReadAuxCr(); local
31 val |= Bits;
32 ArmWriteAuxCr(val);
41 UINT32 val = ArmReadAuxCr(); local
42 val &= ~Bits;
43 ArmWriteAuxCr(val);
  /device/linaro/bootloader/edk2/StdLib/LibC/Locale/
_wcstod.h 58 _RETURN_TYPE val; local
101 val = _STRTOD_FUNC(buf, &end);
119 return val;
  /device/linaro/bootloader/edk2/StdLib/LibC/NetUtil/
inet_addr.c 113 struct in_addr val; local
115 if (inet_aton(cp, &val))
116 return (val.s_addr);
129 u_int32_t val; local
145 val = 0; base = 10; digit = 0;
159 val = (val * base) + (c - '0');
164 val = (val << 4) |
178 if (pp >= parts + 3 || val > 0xffU)
    [all...]
inet_network.c 68 in_addr_t val; local
77 val = 0; base = 10; digit = 0;
86 val = (val * base) + (c - '0');
92 val = (val << 4) + (c + 10 - (islower(c) ? 'a' : 'A'));
102 if (pp >= parts + 4 || val > 0xff)
104 *pp++ = val, cp++;
109 if (pp >= parts + 4 || val > 0xff)
111 *pp++ = val;
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncRound.java 46 final double val= obj.num(); local
47 if (val >= -0.5 && val < 0) return new XNumber(-0.0);
48 if (val == 0.0) return new XNumber(val);
49 return new XNumber(java.lang.Math.floor(val
  /external/boringssl/src/crypto/x509v3/
v3_bitst.c 112 CONF_VALUE *val; local
121 val = sk_CONF_VALUE_value(nval, i);
123 if (!strcmp(bnam->sname, val->name) ||
124 !strcmp(bnam->lname, val->name)) {
135 X509V3_conf_err(val);
  /external/clang/test/CodeGen/
aarch64-inline-asm.c 53 int val; local
54 asm("ldxr %0, %1" : "=r"(val) : "Q"(var));
atomic.c 6 int val = 1; local
13 old = __sync_fetch_and_add(&val, 1);
14 // CHECK: atomicrmw add i32* %val, i32 1 seq_cst
19 old = __sync_fetch_and_min(&val, 3);
20 // CHECK: atomicrmw min i32* %val, i32 3 seq_cst
22 old = __sync_fetch_and_max(&val, 4);
23 // CHECK: atomicrmw max i32* %val, i32 4 seq_cst
31 old = __sync_lock_test_and_set(&val, 7);
32 // CHECK: atomicrmw xchg i32* %val, i32 7 seq_cst
34 old = __sync_swap(&val, 8)
    [all...]
  /external/clang/test/CodeGenCXX/
2006-09-12-OpaqueStructCrash.cpp 10 ~B () { delete [] val; }
12 Ty* val; member in struct:B
optnone-and-attributes.cpp 24 int val = func1(1); local
25 return val + func2(2);
  /external/clang/test/Parser/
cxx-reference.cpp 8 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/
format-strings-ms.c 22 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 = %Iu\n", bigval); // expected-warning{{format specifies type 'unsigned __int32' (aka 'unsigned in (…)
    [all...]
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_printf_test.cc 67 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/Linux/
init-order-dlopen.cc 16 Bar(int val) : val(val) { printf("Bar::Bar(%d)\n", val); }
17 int val; member in struct:Bar
27 Foo() : val(42) { printf("Foo::Foo()\n"); }
28 int val; member in struct:Foo
34 return global_foo.val;
  /external/compiler-rt/test/tsan/
aligned_vs_unaligned_race.cc 18 struct __attribute__((packed, aligned(1))) u_uint64_t { uint64_t val; }; member in struct:u_uint64_t
20 (*p4).val++;
  /external/curl/docs/examples/
href_extractor.c 55 char tag[1], attr[4], val[128]; local
72 html_parser_set_val_buffer(hsp, val, sizeof(val)-1);
  /external/deqp/framework/common/
tcuSeedBuilder.cpp 74 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 = value ^ 555 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/
deRandom.c 102 deUint32 val = deRandom_getUint32(rnd); local
103 return ((val & 0xFFFFFF) < 0x800000);
  /external/e2fsprogs/include/nonunix/
getopt.h 73 to the value given in the field `val' when the option is found, but
78 option's `flag' field to zero and its `val' field to a nonzero
81 returns the contents of the `val' field. */
94 int val; member in struct:option
  /external/elfutils/backends/
s390_unwind.c 83 Dwarf_Word val; local
84 if (! readfunc (sigreg_ptr, &val, arg))
86 if (! setfunc (-1, 1, &val, arg))
106 if (! readfunc (sigreg_ptr, &val, arg))
113 val = (val << 32) | val_low;
115 fprs[i] = val;
125 if (! readfunc (sigreg_ptr, &val, arg))
128 val = (val << 32) | val_low
    [all...]
  /external/fio/oslib/
getopt.h 14 int val; member in struct:option
  /external/flac/include/share/
getopt.h 88 to the value given in the field `val' when the option is found, but
93 option's `flag' field to zero and its `val' field to a nonzero
96 returns the contents of the `val' field. */
109 int val; member in struct:share__option
  /external/google-breakpad/src/testing/gtest/include/gtest/
gtest-message.h 120 inline Message& operator <<(const T& val) {
121 ::GTestStreamToHelper(ss_.get(), val);
155 Message& operator <<(BasicNarrowIoManip val) {
156 *ss_ << val; local
  /external/kernel-headers/original/uapi/linux/
atm_he.h 17 unsigned addr, val; member in struct:he_ioctl_reg

Completed in 1011 milliseconds

1 2 3 4 56 7 8 91011>>