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

1 2 3 4 5 6 7 891011>>

  /external/deqp/framework/delibs/depool/
dePoolArray.c 226 int val = dePoolIntArray_get(arr, i); local
227 DE_TEST_ASSERT(val == i);
  /external/deqp/modules/egl/
teglConfigList.cpp 77 EGLint val = 0; local
79 eglGetConfigAttrib(display, configs[i], EGL_BUFFER_SIZE, &val);
80 info.bufferSize = val;
82 eglGetConfigAttrib(display, configs[i], EGL_RED_SIZE, &val);
83 info.redSize = val;
85 eglGetConfigAttrib(display, configs[i], EGL_GREEN_SIZE, &val);
86 info.greenSize = val;
88 eglGetConfigAttrib(display, configs[i], EGL_BLUE_SIZE, &val);
89 info.blueSize = val;
91 eglGetConfigAttrib(display, configs[i], EGL_LUMINANCE_SIZE, &val);
    [all...]
  /external/iproute2/include/linux/tc_act/
tc_pedit.h 19 __u32 val; /*XOR */ member in struct:tc_pedit_key
  /external/jpeg/
rdswitch.c 43 register long val; local
59 val = ch - '0';
63 val *= 10;
64 val += ch - '0';
66 *result = val;
87 long val; local
96 while (read_text_integer(fp, &val, &termchar)) { /* read 1st element of table */
102 table[0] = (unsigned int) val;
104 if (! read_text_integer(fp, &val, &termchar)) {
109 table[i] = (unsigned int) val;
177 long val; local
272 int val = 0; \/* default table # *\/ local
    [all...]
  /external/kernel-headers/original/uapi/linux/
selinux_netlink.h 43 __s32 val; member in struct:selnl_msg_setenforce
virtio_balloon.h 56 __u64 val; member in struct:virtio_balloon_stat
  /external/kernel-headers/original/uapi/linux/tc_act/
tc_pedit.h 19 __u32 val; /*XOR */ member in struct:tc_pedit_key
  /external/libselinux/src/
avc_sidtab.c 20 unsigned int val; local
22 val = 0;
26 val =
27 (val << 4 | (val >> (8 * sizeof(unsigned int) - 4))) ^ (*p);
28 return val & (SIDTAB_SIZE - 1);
  /external/libvorbis/examples/
seeking_example.c 29 ogg_int64_t val,ogg_int64_t pcmval,double timeval,
39 if(val!=-1 && ov_raw_tell(ov)<val){
41 (long)val,(long)ov_raw_tell(ov));
138 ogg_int64_t val=(double)rand()/RAND_MAX*length; local
139 fprintf(stderr,"\r\t%d [raw position %ld]... ",i,(long)val);
140 ret=ov_raw_seek(&ov,val);
146 _verify(&ov,val,-1,-1.,pcmlength,bigassbuffer);
157 ogg_int64_t val=(double)rand()/RAND_MAX*pcmlength; local
158 fprintf(stderr,"\r\t%d [pcm position %ld]... ",i,(long)val);
176 ogg_int64_t val=(double)rand()\/RAND_MAX*pcmlength; local
200 double val=(double)rand()\/RAND_MAX*timelength; local
219 double val=(double)rand()\/RAND_MAX*timelength; local
    [all...]
  /external/libvpx/libvpx/
args.h 23 const char *val; member in struct:arg
30 int val; member in struct:arg_enum_list
  /external/lldb/test/functionalities/stop-hook/multiple_threads/
main.cpp 48 uint32_t val; local
57 val = access_pool ();
59 val = access_pool (1);
61 printf ("%s (thread = %u) after usleep access_pool returns %d (count=%d)...\n", __FUNCTION__, thread_index, val, count);
  /external/lldb/test/functionalities/watchpoint/hello_watchlocation/
main.cpp 56 uint32_t val; local
65 val = access_pool ();
67 val = access_pool (1);
69 printf ("%s (thread = %u) after usleep access_pool returns %d (count=%d)...\n", __FUNCTION__, thread_index, val, count);
  /external/lldb/test/functionalities/watchpoint/multiple_threads/
main.cpp 51 uint32_t val; local
60 val = access_pool ();
62 val = access_pool (1);
64 printf ("%s (thread = %u) after usleep access_pool returns %d (count=%d)...\n", __FUNCTION__, thread_index, val, count);
  /external/lldb/test/python_api/watchpoint/watchlocation/
main.cpp 54 uint32_t val; local
63 val = access_pool ();
65 val = access_pool (1);
67 printf ("%s (thread = %u) after usleep access_pool returns %d (count=%d)...\n", __FUNCTION__, thread_index, val, count);
  /external/llvm/lib/Support/
DataExtractor.cpp 19 T val = 0; local
21 if (de->isValidOffsetForDataOfSize(offset, sizeof(val))) {
22 std::memcpy(&val, &Data[offset], sizeof(val));
24 sys::swapByteOrder(val);
27 *offset_ptr += sizeof(val);
29 return val;
  /external/llvm/unittests/ADT/
OptionalTest.cpp 176 int val; member in struct:__anon6003::MoveOnly
177 explicit MoveOnly(int val) : val(val) {
180 val = other.val;
184 val = other.val;
214 EXPECT_EQ(3, O->val);
226 EXPECT_EQ(3, B->val);
    [all...]
  /external/lzma/CPP/7zip/Archive/Common/
ParseProperties.cpp 161 bool val; local
162 RINOK(SetBoolProperty(val, prop));
163 numThreads = (val ? defaultNumThreads : 1);
  /external/mesa3d/src/egl/main/
eglsurface.c 74 EGLint val = attrib_list[i]; local
78 if (val < 0) {
82 surf->Width = val;
85 if (val < 0) {
89 surf->Height = val;
131 EGLint val = attrib_list[i]; local
136 switch (val) {
146 surf->VGColorspace = val;
149 switch (val) {
159 surf->VGAlphaFormat = val;
    [all...]
  /external/mesa3d/src/glsl/tests/
set_uniform_initializer_tests.cpp 34 ir_constant *val);
173 ir_constant *val; local
174 generate_data(mem_ctx, base_type, columns, rows, val);
176 linker::set_uniform_initializer(mem_ctx, prog, name, type, val);
179 verify_data(prog->UniformStorage[actual_index].storage, 0, val,
328 ir_constant *val; local
330 array_size + excess_data_size, val);
332 linker::set_uniform_initializer(mem_ctx, prog, name, element_type, val);
336 val, red_zone_components);
  /external/openssl/crypto/asn1/
bio_ndef.c 84 ASN1_VALUE *val; member in struct:ndef_aux_st
101 BIO *BIO_new_NDEF(BIO *out, ASN1_VALUE *val, const ASN1_ITEM *it)
134 if (aux->asn1_cb(ASN1_OP_STREAM_PRE, &val, it, &sarg) <= 0)
137 ndef_aux->val = val;
166 derlen = ASN1_item_ndef_i2d(ndef_aux->val, NULL, ndef_aux->it);
170 derlen = ASN1_item_ndef_i2d(ndef_aux->val, &p, ndef_aux->it);
228 &ndef_aux->val, ndef_aux->it, &sarg) <= 0)
231 derlen = ASN1_item_ndef_i2d(ndef_aux->val, NULL, ndef_aux->it);
235 derlen = ASN1_item_ndef_i2d(ndef_aux->val, &p, ndef_aux->it)
    [all...]
  /external/oprofile/daemon/
opd_events.c 69 unsigned long val = 0; local
73 val = strtoul(str, NULL, 0);
75 return val;
  /external/oprofile/module/x86/
op_apic.c 83 uint val; local
87 val = apic_read(APIC_LVTPC);
88 saved_lvtpc[op_cpu_id()] = val;
90 val &= ~APIC_LVT_MASKED;
92 val = SET_APIC_DELIVERY_MODE(val, APIC_MODE_NMI);
93 apic_write(APIC_LVTPC, val);
113 uint val; local
127 val = apic_read(APIC_LVR);
128 if (!APIC_INTEGRATED(GET_APIC_VERSION(val)))
153 uint val; local
208 u32 val; local
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/net/
inet_pton.c 131 u_int val; local
142 val = 0;
151 val <<= 4;
152 val |= (pch - xdigits);
153 if (val > 0xffff)
171 *tp++ = (u_char) (val >> 8) & 0xff;
172 *tp++ = (u_char) val & 0xff;
175 val = 0;
190 *tp++ = (u_char) (val >> 8) & 0xff;
191 *tp++ = (u_char) val & 0xff
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/helpers/
AssertHelpers.java 205 for (Integer val : array) {
206 list.add(val);
217 String val = ((first) ? ", " : "") + ((elem != null) ? elem.toString() : "null"); local
219 if ((builder.length() + val.length()) > maxLen - "...]".length()) {
223 builder.append(val);
  /development/ndk/sources/android/libportable/arch-arm/
unwind.c 60 uint32_t val; local
61 _Unwind_VRS_Get(ctx, _UVRSC_CORE, index, _UVRSD_UINT32, &val);
62 return (uint64_t)val;
66 uint32_t val = (uint32_t)new_value; local
67 _Unwind_VRS_Set(ctx, _UVRSC_CORE, index, _UVRSD_UINT32, &val);
75 uint32_t val = (uint32_t)new_value; local
78 uint64_t new_val = (uint64_t)(val | thumbState);

Completed in 882 milliseconds

1 2 3 4 5 6 7 891011>>