Searched defs:val (Results 151 - 175 of 2316) sorted by relevance

1234567891011>>

/external/strace/tests-m32/
H A Dpkey_alloc.c49 kernel_ulong_t val; member in struct:__anon19319
68 rc = syscall(__NR_pkey_alloc, flags[i], rights[j].val);
H A Dprctl-no-args.c50 kernel_ulong_t val; member in struct:__anon19322
65 long rc = syscall(__NR_prctl, options[i].val | bogus_op_bits,
/external/strace/tests-mx32/
H A Ddelete_module.c47 kernel_ulong_t val; member in struct:__anon19350
71 rc = syscall(__NR_delete_module, bogus_param1, flags[0].val);
80 rc = syscall(__NR_delete_module, bogus_param1, flags[1].val);
88 flags[2].val);
93 rc = syscall(__NR_delete_module, bogus_param2, flags[3].val);
99 rc = syscall(__NR_delete_module, bogus_param2, flags[4].val);
H A Dfinit_module.c50 kernel_ulong_t val; member in struct:__anon19354
76 rc = syscall(__NR_finit_module, bogus_fd, bogus_param1, flags[0].val);
85 rc = syscall(__NR_finit_module, bogus_fd, bogus_param1, flags[1].val);
93 flags[2].val);
98 rc = syscall(__NR_finit_module, bogus_fd, bogus_param2, flags[3].val);
104 rc = syscall(__NR_finit_module, bogus_fd, bogus_param2, flags[4].val);
H A Dpkey_alloc.c49 kernel_ulong_t val; member in struct:__anon19385
68 rc = syscall(__NR_pkey_alloc, flags[i], rights[j].val);
H A Dprctl-no-args.c50 kernel_ulong_t val; member in struct:__anon19388
65 long rc = syscall(__NR_prctl, options[i].val | bogus_op_bits,
/external/strace/
H A Dxlat.h7 uint64_t val; member in struct:xlat
11 # define XLAT(val) { (unsigned)(val), #val }
12 # define XLAT_PAIR(val, str) { (unsigned)(val), str }
13 # define XLAT_TYPE(type, val) { (type)(val), #val }
14 # define XLAT_TYPE_PAIR(type, val, st
[all...]
/external/syslinux/com32/include/
H A Dgetopt.h10 int val; member in struct:option
/external/syslinux/gnu-efi/gnu-efi-3.0/apps/
H A Dprintenv.c8 CHAR16 name[256], *val, fmt[20]; local
27 val = LibGetVariable(name, &vendor);
28 Print(fmt, &vendor, name, val);
29 FreePool(val);
/external/syslinux/libinstaller/getopt/
H A Dgetopt.h10 int val; member in struct:option
/external/tcpdump/
H A Dgetopt_long.h52 /* if not NULL, set *flag to val when option found */
55 int val; member in struct:option
/external/toybox/toys/other/
H A Dblockdev.c44 long long val = 0; local
57 if (flag & FLAG_setbsz) val = TT.bsz;
58 else val = !!(flag & FLAG_setro);
60 xioctl(fd, cmds[i], &val);
63 if (!flag) printf("%lld\n", (toys.optflags & FLAG_getsz) ? val >> 9: val);
/external/toybox/toys/posix/
H A Dulimit.c108 rlim_t val; local
110 if (tolower(**toys.optargs) == 'u') val = RLIM_INFINITY;
111 else val = atolx_range(*toys.optargs, 0, LONG_MAX);
113 if (toys.optflags&FLAG_H) rr.rlim_max = val;
114 else rr.rlim_cur = val;
/external/v8/src/
H A Dbit-vector.cc31 uintptr_t val = current_value_; local
32 while (val == 0) {
35 val = target_->data_[current_index_];
38 val = SkipZeroBytes(val);
39 val = SkipZeroBits(val);
40 current_value_ = val >> 1;
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DReplyPacket.java63 * @param val
66 public void setErrorCode(short val) { argument
67 error_code = val;
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DWriterChain.java33 * write(int val)
54 public void write(int val) throws IOException; argument
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXNodeSetForDOM.java52 * @param val Value of the XNodeSet object
54 public XNodeSetForDOM(XNodeSet val) argument
56 super(val);
57 if(val instanceof XNodeSetForDOM)
58 m_origObj = ((XNodeSetForDOM)val).m_origObj;
/external/boringssl/src/crypto/x509v3/
H A Dv3_bitst.c112 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/lib/StaticAnalyzer/Checkers/
H A DUndefinedAssignmentChecker.cpp30 void checkBind(SVal location, SVal val, const Stmt *S,
35 void UndefinedAssignmentChecker::checkBind(SVal location, SVal val, argument
38 if (!val.isUndef())
/external/clang/test/Analysis/
H A Dunix-api.c46 int val; member in struct:__anon1857
56 int val; member in struct:__anon1858
58 fd = open(path, O_RDONLY, st.val); // no-warning
/external/clang/test/CodeGen/
H A Daarch64-inline-asm.c53 int val; local
54 asm("ldxr %0, %1" : "=r"(val) : "Q"(var));
H A Datomic.c6 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,
[all...]
H A Dconditional-gnu-ext.c24 _Complex int getComplex(_Complex int val) { argument
28 return val;
H A Dx86_32-inline-asm.c25 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), "N
[all...]
/external/clang/test/CodeGenCXX/
H A D2003-11-29-DuplicatedCleanupTest.cpp16 void test(int val) { argument
20 if (val == 0) goto label;
21 if (val == 1) goto label;
25 void test3(int val) { argument
29 if (val == 0) { doesntThrow(); goto label; }
30 if (val == 1) { doesntThrow(); goto label; }
34 void test4(int val) { argument
38 if (val == 0) { F C; goto label; }
39 if (val == 1) { F D; goto label; }

Completed in 726 milliseconds

1234567891011>>