Searched defs:val (Results 276 - 300 of 2122) sorted by relevance

<<11121314151617181920>>

/external/deqp/framework/delibs/depool/
H A DdePoolArray.c226 int val = dePoolIntArray_get(arr, i); local
227 DE_TEST_ASSERT(val == i);
/external/deqp/modules/egl/
H A DteglConfigList.cpp77 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/fio/t/
H A Daxmap.c38 uint64_t val; local
40 if (lfsr_next(&lfsr, &val, osize)) {
45 if (axmap_isset(map, val)) {
50 axmap_set(map, val);
51 if (!axmap_isset(map, val)) {
76 uint64_t val = bit_off; local
83 while (val + 128 <= map_size) {
85 for (i = val; i < val + 128; i++) {
86 if (axmap_isset(map, val
[all...]
/external/gtest/include/gtest/
H A Dgtest-message.h115 inline Message& operator <<(const T& val) { argument
131 *ss_ << val;
165 Message& operator <<(BasicNarrowIoManip val) { argument
166 *ss_ << val; local
/external/icu/icu4c/source/test/intltest/
H A Ditrbnfp.cpp146 IntlTestRBNFParse::testfmt(RuleBasedNumberFormat* formatter, double val, UErrorCode& status) { argument
148 formatter->format((const Formattable)val, us, status);
154 logln("error: could not format %g, returned status: %d", val, status);
159 IntlTestRBNFParse::testfmt(RuleBasedNumberFormat* formatter, int val, UErrorCode& status) { argument
161 formatter->format((const Formattable)(int32_t)val, us, status);
167 logln("error: could not format %d, returned status: %d", val, status);
/external/iproute2/include/linux/tc_act/
H A Dtc_pedit.h19 __u32 val; /*XOR */ member in struct:tc_pedit_key
/external/kernel-headers/original/uapi/linux/
H A Dselinux_netlink.h43 __s32 val; member in struct:selnl_msg_setenforce
H A Dvirtio_balloon.h56 __u64 val; member in struct:virtio_balloon_stat
/external/kernel-headers/original/uapi/linux/tc_act/
H A Dtc_pedit.h19 __u32 val; /*XOR */ member in struct:tc_pedit_key
/external/libexif/libexif/fuji/
H A Dmnote-fuji-entry.c191 char *val, unsigned int maxlen)
202 memset (val, 0, maxlen);
207 CF (entry->format, EXIF_FORMAT_UNDEFINED, val, maxlen);
208 CC (entry->components, 4, val, maxlen);
209 memcpy (val, entry->data, MIN(maxlen, entry->size));
228 CF (entry->format, EXIF_FORMAT_SHORT, val, maxlen);
229 CC (entry->components, 1, val, maxlen);
235 snprintf (val, maxlen,
244 snprintf (val, maxlen,
248 strncpy (val,
190 mnote_fuji_entry_get_value(MnoteFujiEntry *entry, char *val, unsigned int maxlen) argument
[all...]
/external/libopus/celt/
H A Dlaplace.c54 int val = *value; local
56 if (val)
60 s = -(val<0);
61 val = (val+s)^s;
65 for (i=1; fs > 0 && i < val; i++)
78 di = IMIN(val - i, ndi_max - 1);
96 int val=0; local
103 val++;
113 val
[all...]
/external/libunwind/src/x86_64/
H A DGstep.c62 int val = c->validate; local
74 c->validate = val;
/external/libvorbis/examples/
H A Dseeking_example.c29 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);
28 _verify(OggVorbis_File *ov, ogg_int64_t val,ogg_int64_t pcmval,double timeval, ogg_int64_t pcmlength, char *bigassbuffer) argument
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/libvorbis/lib/
H A Danalysis.c91 float val; local
93 val=-140.;
95 val=todB(v+j);
96 fprintf(of,"%f\n",val);
/external/libvpx/libvpx/
H A Dargs.h23 const char *val; member in struct:arg
30 int val; member in struct:arg_enum_list
/external/llvm/include/llvm/ADT/
H A DIndexedMap.h41 explicit IndexedMap(const T& val) : nullVal_(val) { } argument
/external/llvm/lib/Target/NVPTX/
H A DNVPTXutil.cpp36 static int encode_leb128(uint64_t val, int *nbytes, char *space, int splen) { argument
46 uc = val & DATA_MASK;
47 val >>= DIGIT_WIDTH;
48 if (val != 0)
52 } while (val);
/external/llvm/unittests/ADT/
H A DOptionalTest.cpp176 int val; member in struct:__anon26451::MoveOnly
177 explicit MoveOnly(int val) : val(val) { argument
180 val = other.val;
184 val = other.val;
214 EXPECT_EQ(3, O->val);
226 EXPECT_EQ(3, B->val);
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest-message.h120 inline Message& operator <<(const T& val) { argument
121 ::GTestStreamToHelper(ss_.get(), val);
155 Message& operator <<(BasicNarrowIoManip val) { argument
156 *ss_ << val; local
/external/mesa3d/src/gtest/include/gtest/
H A Dgtest-message.h120 inline Message& operator <<(const T& val) { argument
121 ::GTestStreamToHelper(ss_.get(), val);
155 Message& operator <<(BasicNarrowIoManip val) { argument
156 *ss_ << val; local
/external/oprofile/module/
H A Dop_util.c96 int check_range(int val, int l, int h, char const * msg) argument
98 if (val < l || val > h) {
99 printk(msg, val, l, h);
/external/oprofile/module/x86/
H A Dcpu_type.c150 __u16 val; local
161 val = cpuid_edx(1);
162 if (!(val & (1 << 9)))
/external/ppp/pppd/plugins/radius/
H A Doptions.h28 void *val; /* pointer to option value */ member in struct:_option
/external/protobuf/gtest/include/gtest/
H A Dgtest-message.h115 inline Message& operator <<(const T& val) { argument
116 ::GTestStreamToHelper(ss_, val);
150 Message& operator <<(BasicNarrowIoManip val) { argument
151 *ss_ << val; local
/external/smack/src/org/xbill/DNS/
H A DDClass.java43 check(int val) { argument
44 DClass.check(val);

Completed in 1965 milliseconds

<<11121314151617181920>>