HomeSort by relevance Sort by last modified time
    Searched defs:val (Results 201 - 225 of 2058) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/iproute2/include/linux/tc_ematch/
tc_em_cmp.h 8 __u32 val; member in struct:tcf_em_cmp
  /external/libselinux/src/
selinux_netlink.h 24 int32_t val; member in struct:selnl_msg_setenforce
  /external/libsepol/src/
util.c 29 unsigned int val; member in struct:val_to_name
69 if (v->val == perdatum->s.value) {
92 v.val = i + 1;
  /external/libvorbis/lib/
analysis.c 91 float val; local
93 val=-140.;
95 val=todB(v+j);
96 fprintf(of,"%f\n",val);
  /external/libvpx/libvpx/vp9/common/
vp9_quant_common.c 99 int i, val = 4; local
106 ac_qlookup[0] = val;
107 dc_qlookup[0] = val;
108 val += 4;
111 const int ac_val = val;
113 val = (int)(val * 1.01975);
114 if (val == ac_val)
115 ++val;
  /external/mesa3d/src/glsl/tests/
copy_constant_to_storage_tests.cpp 33 const ir_constant *val,
69 ir_constant *val; local
70 generate_data(mem_ctx, GLSL_TYPE_INT, 1, rows, val);
72 const unsigned red_zone_size = Elements(storage) - val->type->components();
74 val->type->components(),
78 val,
79 val->type->base_type,
80 val->type->components());
82 verify_data(storage, 0, val, red_zone_size);
88 ir_constant *val; local
107 ir_constant *val; local
126 ir_constant *val; local
150 ir_constant *val; local
    [all...]
  /external/open-vcdiff/gtest/include/gtest/
gtest-message.h 115 inline Message& operator <<(const T& val) {
116 ::GTestStreamToHelper(ss_, val);
150 Message& operator <<(BasicNarrowIoManip val) {
151 *ss_ << val; local
  /external/oprofile/libabi/
abi.cpp 68 int val; local
71 while(i >> key >> val)
72 abi.slots[key] = val;
  /external/oprofile/module/x86/
cpu_type.c 150 __u16 val; local
161 val = cpuid_edx(1);
162 if (!(val & (1 << 9)))
  /external/protobuf/gtest/include/gtest/
gtest-message.h 115 inline Message& operator <<(const T& val) {
116 ::GTestStreamToHelper(ss_, val);
150 Message& operator <<(BasicNarrowIoManip val) {
151 *ss_ << val; local
  /external/qemu/distrib/sdl-1.2.15/src/thread/beos/
SDL_syssem.c 67 int32 val; local
77 val = acquire_sem(sem->id);
80 val = acquire_sem_etc(sem->id, 1, B_RELATIVE_TIMEOUT, timeout);
82 switch (val) {
  /external/qemu/hw/
pci_host.h 42 static void pci_host_data_writeb(void* opaque, pci_addr_t addr, uint32_t val)
46 PCI_DPRINTF("writeb addr " TARGET_FMT_plx " val %x\n",
47 (target_phys_addr_t)addr, val);
49 pci_data_write(s->bus, s->config_reg | (addr & 3), val, 1);
52 static void pci_host_data_writew(void* opaque, pci_addr_t addr, uint32_t val)
56 val = bswap16(val);
58 PCI_DPRINTF("writew addr " TARGET_FMT_plx " val %x\n",
59 (target_phys_addr_t)addr, val);
61 pci_data_write(s->bus, s->config_reg | (addr & 3), val, 2)
79 uint32_t val; local
92 uint32_t val; local
107 uint32_t val; local
    [all...]
  /external/qemu/
migration-tcp.c 56 int val, ret; local
57 socklen_t valsize = sizeof(val);
61 ret = getsockopt(s->fd, SOL_SOCKET, SO_ERROR, (void *) &val, &valsize);
71 if (val == 0)
74 dprintf("error connecting %d\n", val);
182 int val; local
194 val = 1;
195 setsockopt(s, SOL_SOCKET, SO_REUSEADDR, (const char *)&val, sizeof(val));
  /external/srec/srec/cfront/
log_tabl.c 48 double val; local
60 val = LOG_SCALE * log((double)2.0);
61 logtab->shift = (int)(val + 0.5);
72 val = LOG_SCALE * log((double) ii);
73 table[ii] = (int)(val + 0.5);
  /external/stlport/test/unit/
config_test.cpp 55 int val = 0x01020304; local
56 char *ptr = (char*)(&val);
  /external/tcpdump/
extract.h 47 u_int16_t val; member in struct:__anon28628
51 u_int32_t val; member in struct:__anon28629
55 ((u_int16_t)ntohs(((const unaligned_u_int16_t *)(p))->val))
57 ((u_int32_t)ntohl(((const unaligned_u_int32_t *)(p))->val))
59 ((u_int64_t)(((u_int64_t)ntohl(((const unaligned_u_int32_t *)(p) + 0)->val)) << 32 | \
60 ((u_int64_t)ntohl(((const unaligned_u_int32_t *)(p) + 1)->val)) << 0))
  /external/valgrind/main/memcheck/tests/s390x/
cds.c 33 quad_word val; local
35 val.high = 0;
36 val.low |= 0xFFFFFFFF00000000ull;
38 return val;
  /external/valgrind/main/memcheck/tests/
test-plo.c 31 ULong val = *(ULong*)s; local
33 ULong val2 = val - 0x0101010101010101ULL;
35 val2 ^= val;
  /external/wpa_supplicant_8/src/tls/
asn1.c 82 unsigned long val; local
91 val = 0;
97 val = (val << 7) | (tmp & 0x7f);
110 oid->oid[0] = val / 40;
113 oid->oid[1] = val - oid->oid[0] * 40;
116 oid->oid[oid->len++] = val;
185 unsigned long val = 0; local
193 val |= rotate_bits(*pos++);
195 val |= ((unsigned long) rotate_bits(*pos++)) << 8
    [all...]
  /external/zlib/src/contrib/infback9/
inftree9.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:__anon30840
  /external/zlib/src/contrib/iostream/
zfstream.h 95 gzomanip(gzofstream &(*f)(gzofstream &, T), T v) : func(f), val(v) { } function in class:gzomanip
98 T val; member in class:gzomanip
103 return (*m.func)(s, m.val);
  /external/zlib/src/
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:__anon30856
  /frameworks/av/libvideoeditor/vss/src/
M4AD_Null.c 161 M4OSA_Int16 val; local
165 val = (M4OSA_Int16)((M4OSA_UInt8)(pInputBuffer->m_dataAddress[i]) - 128);
167 pDecodedPCMBuffer->m_dataAddress[i*2] = (M4OSA_Int8)(val>>8);
168 pDecodedPCMBuffer->m_dataAddress[i*2+1] = (M4OSA_Int8)(val&0x00ff);
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_seek_synch.cpp 133 uint16 val; local
215 val = (tmp1 << 3);
216 val |= (tmp2 >> 5);
221 val = 0; // force mismatch
224 if (val == SYNC_WORD)
284 uint16 val; local
290 val = (uint16)getUpTo17bits(inputStream, SYNC_WORD_LNGTH);
292 while (((val&SYNC_WORD) != SYNC_WORD) && (inputStream->usedBits < availableBits))
294 val <<= 8;
295 val |= getUpTo9bits(inputStream, 8)
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
stats_scorer.cpp 33 float val = static_cast<float>(pImg[i]); local
34 sum += val;
35 sumSquares += val * val;
59 float val = static_cast<float>(*(pImg + disp + x)); local
60 sum += val;
61 sumSquares += val * val;

Completed in 1564 milliseconds

1 2 3 4 5 6 7 891011>>