Searched defs:val (Results 1 - 25 of 1798) sorted by relevance

1234567891011>>

/external/chromium/third_party/libjingle/source/talk/base/
H A Dstringencode.cc45 char hex_encode(unsigned char val) { argument
46 ASSERT(val < 16);
47 return (val < 16) ? HEX[val] : '!';
50 bool hex_decode(char ch, unsigned char* val) {
52 *val = ch - '0';
54 *val = (ch - 'A') + 10;
56 *val = (ch - 'a') + 10;
328 unsigned long val;
329 if (size_t vallen = utf8_decode(&source[srcpos], srclen - srcpos, &val)) {
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/postprocess/
H A Dpp_celshade.c34 pp_celshade_init(struct pp_queue_t *ppq, unsigned int n, unsigned int val) argument
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dalloc-number.js34 for (var i = 1; i < 100000; i+=2) o.val = x + y + i;
38 var o = { val: 0 };
/external/chromium_org/v8/test/webkit/fast/js/kde/
H A Dcompletion.js40 var val = eval("11; { }"); variable
41 shouldBe("val", "11");
42 val = eval("12; ;");
43 shouldBe("val", "12");
44 val = eval("13; if(false);");
45 shouldBe("val", "13");
46 val = eval("14; function f() {}");
47 shouldBe("val", "14");
48 val = eval("15; var v = 0");
49 shouldBe("val", "1
[all...]
/external/clang/test/CodeGen/
H A D2003-08-21-StmtExpr.c5 unsigned long val; member in struct:__anon15787
H A D2010-01-13-MemBarrier.c7 unsigned t(uint32_t *ptr, uint32_t val) { argument
10 return __sync_lock_test_and_set(ptr, val);
H A Duint128_t.c8 f(uint64_t val) argument
12 tmp = val;
/external/clang/test/CodeGenCXX/
H A Dswitch-case-folding-1.cpp4 int test(int val){ argument
8 switch (val) {
H A Dswitch-case-folding-2.cpp5 int test(int val){ argument
6 switch (val) {
/external/clang/test/SemaCXX/
H A DPR9884.cpp5 Base(int val);
11 Derived(int val);
15 Derived::Derived(int val) argument
16 : Base( val )
/external/compiler-rt/BlocksRuntime/tests/
H A Dgoto.c21 __block int val = 0; local
23 ^{ val = 1; }();
25 if (val == 0) {
26 goto out_bad; // error: local byref variable val is in the scope of this goto
32 printf("%s: val not updated!\n", argv[0]);
/external/compiler-rt/lib/asan/lit_tests/TestCases/Helpers/
H A Dinitialization-nobug-extra.cc9 static int val = getStructWithDtorValue(); variable
/external/mesa3d/src/gallium/auxiliary/postprocess/
H A Dpp_celshade.c34 pp_celshade_init(struct pp_queue_t *ppq, unsigned int n, unsigned int val) argument
/external/v8/test/mjsunit/compiler/
H A Dalloc-number.js34 for (var i = 1; i < 100000; i+=2) o.val = x + y + i;
38 var o = { val: 0 };
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/common/
H A Dmmio.h43 uint32_t val; local
46 : "=r" (val)
48 return val;
/external/elfutils/host-darwin-fixup/
H A Dbyteswap.h20 static inline unsigned short bswap_16(unsigned short val) argument
22 return ((val & 0xff) << 8) | ((val >> 8) & 0xff);
25 static inline unsigned long bswap_32(unsigned long val) argument
27 return bswap_16((unsigned short)val) << 16 |
28 bswap_16((unsigned short)(val >> 16));
31 static inline unsigned long long bswap_64(unsigned long long val) argument
33 return ((((unsigned long long)bswap_32(val)) << 32) |
34 (((unsigned long long)bswap_32(val >> 32)) & 0xffffffffULL));
/external/libgsm/src/
H A Dgsm_option.c14 int gsm_option P3((r, opt, val), gsm r, int opt, int * val) argument
22 if (val) r->ltp_cut = *val;
29 if (val) r->verbose = *val;
37 if (val) r->fast = !!*val;
45 if (val) r->frame_chain = *val;
[all...]
/external/linux-tools-perf/host-darwin-fixup/
H A Dbyteswap.h20 static inline unsigned short bswap_16(unsigned short val) argument
22 return ((val & 0xff) << 8) | ((val >> 8) & 0xff);
25 static inline unsigned long bswap_32(unsigned long val) argument
27 return bswap_16((unsigned short)val) << 16 |
28 bswap_16((unsigned short)(val >> 16));
31 static inline unsigned long long bswap_64(unsigned long long val) argument
33 return ((((unsigned long long)bswap_32(val)) << 32) |
34 (((unsigned long long)bswap_32(val >> 32)) & 0xffffffffULL));
/external/mesa3d/src/mesa/drivers/dri/common/
H A Dmmio.h43 uint32_t val; local
46 : "=r" (val)
48 return val;
/external/stlport/test/unit/
H A Dmath_aux.h19 bool are_equals(_Tp val, _Tp ref) { argument
20 if (val < ref) {
21 return (ref - val) <= __STD numeric_limits<_Tp>::epsilon();
24 return (val - ref) <= __STD numeric_limits<_Tp>::epsilon();
/external/chromium_org/content/public/test/
H A Dcontent_test_suite_base.h30 void set_external_libraries_enabled(bool val) { argument
31 external_libraries_enabled_ = val;
/external/chromium_org/sandbox/linux/seccomp-bpf/
H A Dsyscall_iterator.cc16 uint32_t val; local
22 val = num_;
66 } while (invalid_only_ && IsValid(val));
68 done_ |= val == 0xFFFFFFFFu;
69 return val;
/external/chromium_org/third_party/WebKit/Source/core/platform/sql/
H A DSQLValue.cpp34 SQLValue::SQLValue(const SQLValue& val) argument
35 : m_type(val.m_type)
36 , m_number(val.m_number)
37 , m_string(val.m_string.isolatedCopy())
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
H A Dpratom.h53 ** val: a pointer to the value to increment
57 NSPR_API(PRInt32) PR_AtomicIncrement(PRInt32 *val); variable
64 ** val: a pointer to the value to decrement
68 NSPR_API(PRInt32) PR_AtomicDecrement(PRInt32 *val); variable
75 ** val: A pointer to a 32 bit value to be set
76 ** newval: The newvalue to assign to val
80 NSPR_API(PRInt32) PR_AtomicSet(PRInt32 *val, PRInt32 newval);
88 ** val: value to be added
92 NSPR_API(PRInt32) PR_AtomicAdd(PRInt32 *ptr, PRInt32 val);
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Driprel1.asm2 val: label
5 mov rax, val ; 32-bit imm
6 mov rax, dword val ; 32-bit imm
7 mov rax, qword val ; 64-bit imm
9 mov rbx, val ; 32-bit imm
10 mov rbx, dword val ; 32-bit imm
11 mov rbx, qword val ; 64-bit imm
13 mov rax, [val] ; 48 8b ... (32-bit disp)
14 mov rax, [dword val] ; 48 8b ... (32-bit disp)
15 mov rax, [qword val] ; 4
[all...]

Completed in 1457 milliseconds

1234567891011>>