/external/fio/ |
trim.c | 72 unsigned long long val; local 80 val = (OS_RAND_MAX / 100ULL); 83 val = (FRAND_MAX / 100ULL); 86 val *= (unsigned long long) td->o.trim_percentage; 87 return r <= val;
|
/bootable/recovery/minui/ |
mkfont.c | 33 unsigned val = (*x ? 0 : 255); local 35 if((val == run_val) && (run_count < 127)) { 40 run_val = val;
|
/external/chromium_org/sandbox/linux/seccomp-bpf/ |
syscall_iterator.cc | 17 uint32_t val; local 28 val = num_; 77 } while (invalid_only_ && IsValid(val)); 79 done_ |= val == 0xFFFFFFFFu; 80 return val;
|
/external/chromium_org/third_party/mesa/src/src/egl/main/ |
eglimage.c | 58 EGLint val = attrib_list[i]; local 63 attrs->ImagePreserved = val; 68 attrs->GLTextureLevel = val; 71 attrs->GLTextureZOffset = val; 76 attrs->Width = val; 79 attrs->Height = val; 82 attrs->DRMBufferFormatMESA = val; 85 attrs->DRMBufferUseMESA = val; 88 attrs->DRMBufferStrideMESA = val; 93 attrs->PlaneWL = val; [all...] |
eglsync.c | 49 EGLint val = attrib_list[i]; local 53 (void) val;
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
ir_builder.h | 39 operand(ir_rvalue *val) 40 : val(val) 47 val = new(mem_ctx) ir_dereference_variable(var); 50 ir_rvalue *val; member in class:ir_builder::operand 59 deref(ir_dereference *val) 60 : val(val) 67 val = new(mem_ctx) ir_dereference_variable(var); 71 ir_dereference *val; member in class:ir_builder::deref [all...] |
/external/chromium_org/third_party/npapi/npspy/extern/nspr/ |
pratom.h | 53 ** 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/skia/src/ports/ |
SkBarriers_arm.h | 15 T val = *ptr; local 17 return val; 22 T val = *ptr; local 27 return val; 31 void sk_release_store(T* ptr, T val) { 33 *ptr = val;
|
SkBarriers_x86.h | 20 T val = *ptr; local 23 return val; 33 void sk_release_store(T* ptr, T val) { 36 *ptr = val;
|
/external/chromium_org/third_party/webrtc/modules/video_processing/main/source/ |
brighten.cc | 31 int val = i + delta; local 32 look_up[i] = ((((val < 0) ? 0 : val) > 255) ? 255 : val);
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/ |
riprel1.asm | 2 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] ; 48 a1 ... (64-bit disp [all...] |
/external/chromium_org/v8/src/base/ |
bits-unittest.cc | 126 int32_t val = 0; local 127 EXPECT_FALSE(SignedAddOverflow32(0, 0, &val)); 128 EXPECT_EQ(0, val); 130 SignedAddOverflow32(std::numeric_limits<int32_t>::max(), 1, &val)); 131 EXPECT_EQ(std::numeric_limits<int32_t>::min(), val); local 133 SignedAddOverflow32(std::numeric_limits<int32_t>::min(), -1, &val)); 134 EXPECT_EQ(std::numeric_limits<int32_t>::max(), val); local 136 std::numeric_limits<int32_t>::max(), &val)); local 137 EXPECT_EQ(-2, val); 140 EXPECT_FALSE(SignedAddOverflow32(i, j, &val)); 148 int32_t val = 0; local 153 EXPECT_EQ(std::numeric_limits<int32_t>::max(), val); local 156 EXPECT_EQ(std::numeric_limits<int32_t>::min(), val); local [all...] |
/external/clang/test/CodeGen/ |
arm-asm-warn.c | 21 int64x2_t val[4]; member in struct:int64x2x4_t 26 : [r0] "=r"(r.val[0]), // expected-warning {{value size does not match register size specified by the constraint and modifier}} 27 [r1] "=r"(r.val[1]), // expected-warning {{value size does not match register size specified by the constraint and modifier}} 28 [r2] "=r"(r.val[2]), // expected-warning {{value size does not match register size specified by the constraint and modifier}} 29 [r3] "=r"(r.val[3]) // expected-warning {{value size does not match register size specified by the constraint and modifier}}
|
/external/clang/test/PCH/ |
captured-stmt.cpp | 18 int val; member in struct:C 20 explicit C(int v) : val(v) { } 26 x += val;
|
/external/clang/test/SemaCXX/ |
warn-char-subscripts.cpp | 7 int val = array[subscript]; // expected-warning{{array subscript is of type 'char'}} local 14 int val = subscript[array]; // expected-warning{{array subscript is of type 'char'}} local
|
/external/compiler-rt/test/asan/TestCases/ |
use-after-scope-temp.cc | 10 explicit IntHolder(int val) : val(val) { 11 printf("IntHolder: %d\n", val); 13 int val; member in struct:IntHolder 24 int x = saved->val; // BOOM
|
/external/libcxx/test/containers/sequences/list/ |
db_iterators_9.pass.cpp | 24 struct S { int val; }; member in struct:S 54 try { (void) i->val; } catch (int) { ++lib_asserts; } 55 try { (void) ci->val; } catch (int) { ++lib_asserts; }
|
/external/libcxx/test/support/ |
private_constructor.hpp | 18 int get () const { return val; } 20 PrivateConstructor ( int v ) : val(v) {} 21 int val; member in struct:PrivateConstructor
|
/external/mdnsresponder/Clients/ |
ClientCommon.c | 60 int val = v0 * 100 + v1 * 10 + v2; local 64 if (val == 0) val = '-'; 65 if (val <= 255) { c = (char)val; cstr += 2; }
|
/external/mesa3d/src/egl/main/ |
eglimage.c | 58 EGLint val = attrib_list[i]; local 63 attrs->ImagePreserved = val; 68 attrs->GLTextureLevel = val; 71 attrs->GLTextureZOffset = val; 76 attrs->Width = val; 79 attrs->Height = val; 82 attrs->DRMBufferFormatMESA = val; 85 attrs->DRMBufferUseMESA = val; 88 attrs->DRMBufferStrideMESA = val; 93 attrs->PlaneWL = val; [all...] |
eglsync.c | 49 EGLint val = attrib_list[i]; local 53 (void) val;
|
/external/mesa3d/src/glsl/ |
ir_builder.h | 39 operand(ir_rvalue *val) 40 : val(val) 47 val = new(mem_ctx) ir_dereference_variable(var); 50 ir_rvalue *val; member in class:ir_builder::operand 59 deref(ir_dereference *val) 60 : val(val) 67 val = new(mem_ctx) ir_dereference_variable(var); 71 ir_dereference *val; member in class:ir_builder::deref [all...] |
/external/oprofile/gui/ |
oprof_start_config.cpp | 72 string val = split(str, '='); local 74 buffer_size = op_lexical_cast<unsigned int>(val); 78 note_table_size = op_lexical_cast<unsigned int>(val); 82 if (val == "none") { 85 } else if (!val.empty()) { 87 kernel_filename = val; 90 separate_lib = op_lexical_cast<bool>(val); 92 separate_kernel = op_lexical_cast<bool>(val); 94 separate_cpu = op_lexical_cast<bool>(val); 96 separate_thread = op_lexical_cast<bool>(val); [all...] |
/bionic/libc/kernel/uapi/linux/ |
atm_he.h | 30 unsigned addr, val; member in struct:he_ioctl_reg
|
/bionic/libc/upstream-openbsd/lib/libc/net/ |
inet_addr.c | 67 struct in_addr val; local 69 if (inet_aton(cp, &val)) 70 return (val.s_addr); 84 in_addr_t val; local 99 val = 0; base = 10; 110 val = (val * base) + (c - '0'); 115 val = (val << 4) | 130 *pp++ = val; [all...] |