/external/libpcap/Win32/Src/ |
inet_net.c | 49 register u_long val, base, n; local 60 val = 0; base = 10; 73 val = (val * base) + (c - '0'); 78 val = (val << 4) + (c + 10 - (islower(c) ? 'a' : 'A')); 87 *pp++ = val, cp++; 92 *pp++ = val; 96 for (val = 0, i = 0; i < (int)n; i++) { 97 val <<= 8 [all...] |
/external/libunwind/include/ |
remote.h | 54 unw_word_t val, aligned_addr = *addr & -WSIZE, off = *addr - aligned_addr; local 59 ret = (*a->access_mem) (as, aligned_addr, &val, 0, arg); 62 val >>= 8*off; 64 val >>= 8*(WSIZE - 1 - off); 66 *valp = val & 0xff; 74 unw_word_t val, aligned_addr = *addr & -WSIZE, off = *addr - aligned_addr; local 81 ret = (*a->access_mem) (as, aligned_addr, &val, 0, arg); 84 val >>= 8*off; 86 val >>= 8*(WSIZE - 2 - off); 88 *valp = val & 0xffff 96 unw_word_t val, aligned_addr = *addr & -WSIZE, off = *addr - aligned_addr; local [all...] |
/external/libunwind/include/tdep-aarch64/ |
dwarf-config.h | 45 unw_word_t val; member in struct:dwarf_loc
|
/external/libunwind/include/tdep-arm/ |
dwarf-config.h | 44 unw_word_t val; member in struct:dwarf_loc
|
/external/libunwind/include/tdep-hppa/ |
dwarf-config.h | 47 unw_word_t val; member in struct:dwarf_loc
|
/external/libunwind/include/tdep-mips/ |
dwarf-config.h | 47 unw_word_t val; member in struct:dwarf_loc
|
/external/libunwind/include/tdep-ppc32/ |
dwarf-config.h | 49 unw_word_t val; member in struct:dwarf_loc
|
/external/libunwind/include/tdep-ppc64/ |
dwarf-config.h | 49 unw_word_t val; member in struct:dwarf_loc
|
/external/libunwind/include/tdep-sh/ |
dwarf-config.h | 42 unw_word_t val; member in struct:dwarf_loc
|
/external/libunwind/include/tdep-x86/ |
dwarf-config.h | 45 unw_word_t val; member in struct:dwarf_loc
|
/external/libunwind/include/tdep-x86_64/ |
dwarf-config.h | 52 unw_word_t val; member in struct:dwarf_loc
|
/external/libunwind/src/x86/ |
Gresume.c | 44 unw_word_t val; local 62 if (tdep_access_reg (c, reg, &val, 0) >= 0) 63 (*access_reg) (as, reg, &val, 1, arg);
|
/external/libusb/examples/getopt/ |
getopt.h | 84 to the value given in the field `val' when the option is found, but 89 option's `flag' field to zero and its `val' field to a nonzero 92 returns the contents of the `val' field. */ 105 int val; member in struct:option
|
/external/libvorbis/lib/ |
lookup.c | 65 long val=INVSQ_LOOKUP_I[i]- /* 1.16 */ local 70 if(e&1)val=(val*5792)>>13; /* multiply val by 1/sqrt(2) */ 73 return(val>>e);
|
tone.c | 37 float val=0; local 40 val+=amp[j]*sin(i/44100.f*f[j]*2*M_PI); 41 ival=rint(val);
|
/external/linux-kselftest/tools/testing/selftests/futex/include/ |
atomic.h | 26 volatile int val; member in struct:__anon24816 37 * Return the old value of addr->val. 42 return __sync_val_compare_and_swap(&addr->val, oldval, newval); 49 * Return the new value of addr->val. 54 return __sync_add_and_fetch(&addr->val, 1); 61 * Return the new value of addr-val. 66 return __sync_sub_and_fetch(&addr->val, 1); 74 * Return the new value of addr->val. 79 addr->val = newval;
|
/external/linux-kselftest/tools/testing/selftests/powerpc/pmu/ebb/ |
cycles_with_freeze_test.c | 26 uint64_t mask, val; local 30 val = mfspr(SPRN_BESCR); 31 if (!(val & BESCR_PMEO)) { 39 val = mfspr(SPRN_MMCR0); 40 trace_log_reg(ebb_state.trace, SPRN_MMCR0, val); 56 uint64_t val; local 92 val = mfspr(SPRN_MMCR0); 93 if (! (val & MMCR0_FC)) { 94 printf("Outside of loop, FC NOT set MMCR0 0x%lx\n", val);
|
cycles_with_mmcr2_test.c | 25 uint64_t val, expected[2], actual; local 62 val = mfspr(SPRN_MMCR2); 63 if (val != expected[i % 2]) { 65 actual = val;
|
pmae_handling_test.c | 33 uint64_t val; local 35 val = mfspr(SPRN_BESCR); 36 if (!(val & BESCR_PMEO)) {
|
/external/llvm/utils/unittest/googletest/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/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_post/ |
5-1.c | 18 * 5) If sempost() succeeds (verified if val is incremented by 1), 46 int val; local 65 if (sem_getvalue(gsemp, &val) == -1) { 69 if (val != SEMINITVAL + 1) { 77 printf("semaphore value was %d\n", val);
|
6-1.c | 17 * 5) If sempost() succeeds (verified if val is incremented by 1), 49 int val; local 76 if (sem_getvalue(gsemp, &val) == -1) { 80 if (val != SEMINITVAL + 1) { 88 printf("semaphore value was %d\n", val);
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_timedwait/ |
1-1.c | 33 int val, sts; local 51 if (sem_getvalue(&mysemp, &val) == -1) { 57 if (val == 0 && sts == 0) {
|
2-2.c | 36 int sts, val; local 54 if (sem_getvalue(&mysemp, &val) == -1) { 59 if ((val == 1) && (sts == -1)) {
|
3-1.c | 39 int val; local 60 if (sem_getvalue(&mysemp, &val) == -1) { 66 if (val == 0) {
|