HomeSort by relevance Sort by last modified time
    Searched full:ival (Results 1 - 25 of 146) sorted by null

1 2 3 4 5 6

  /external/libvorbis/lib/
tone.c 38 int ival; local
41 ival=rint(val);
43 if(ival>32767.f)ival=32767.f;
44 if(ival<-32768.f)ival=-32768.f;
47 (char)(ival&0xff),
48 (char)((ival>>8)&0xff),
49 (char)(ival&0xff),
50 (char)((ival>>8)&0xff))
    [all...]
  /external/llvm/test/CodeGen/Hexagon/
gp-plus-offset-store.ll 8 define void @storeByte(i32 %val1, i32 %val2, i8 zeroext %ival) nounwind {
15 store i8 %ival, i8* getelementptr inbounds (%struct.struc* @foo, i32 0, i32 1), align 1
22 define void @storeHW(i32 %val1, i32 %val2, i16 signext %ival) nounwind {
29 store i16 %ival, i16* getelementptr inbounds (%struct.struc* @foo, i32 0, i32 2), align 2
gp-plus-offset-load.ll 8 define void @loadWord(i32 %val1, i32 %val2, i32* nocapture %ival) nounwind {
16 store i32 %0, i32* %ival, align 4
23 define void @loadByte(i32 %val1, i32 %val2, i8* nocapture %ival) nounwind {
31 store i8 %0, i8* %ival, align 1
38 define void @loadHWord(i32 %val1, i32 %val2, i16* %ival) nounwind {
46 store i16 %0, i16* %ival, align 2
  /external/libnl/src/lib/
route.c 154 int ival; local
171 if (!(ival = rtnl_link_name2i(link_cache, arg)))
174 rtnl_route_nh_set_ifindex(nh, ival);
224 int ival; local
226 if ((ival = rtnl_str2scope(arg)) < 0)
229 rtnl_route_set_scope(route, ival);
250 int ival; local
252 if ((ival = nl_str2rtntype(arg)) < 0)
255 if ((ival = rtnl_route_set_type(route, ival)) < 0
262 int ival; local
    [all...]
addr.c 57 int ival; local
59 if (!(ival = rtnl_link_name2i(link_cache, arg)))
62 rtnl_addr_set_ifindex(addr, ival);
89 int ival; local
91 if ((ival = rtnl_str2scope(arg)) < 0)
94 rtnl_addr_set_scope(addr, ival);
neigh.c 58 int ival; local
60 if (!(ival = rtnl_link_name2i(link_cache, arg)))
63 rtnl_neigh_set_ifindex(neigh, ival);
qdisc.c 35 int ival; local
37 if (!(ival = rtnl_link_name2i(link_cache, arg)))
40 rtnl_qdisc_set_ifindex(qdisc, ival);
  /external/llvm/test/MC/Mips/
sext_64_32.ll 7 define i64 @foo(i32 %ival) nounwind readnone {
9 %conv = sext i32 %ival to i64
  /external/libnl/src/cls/
utils.c 26 int ival; local
28 if (!(ival = rtnl_link_name2i(link_cache, arg)))
31 rtnl_cls_set_ifindex(cls, ival);
  /external/srec/srec/clib/
log_add.h 23 static PINLINE prdata log_increment_inline(prdata ival, const logadd_table_info *logtab);
25 static PINLINE prdata log_increment_inline(prdata ival, const logadd_table_info *logtab)
34 return (logtab->table[(int)(ival)]);
  /external/bison/examples/calc++/
calc++-parser.yy 29 int ival;
40 %token <ival> NUMBER "number"
41 %type <ival> exp
46 %printer { yyoutput << $$; } <ival>
  /external/clang/test/CodeGenObjC/
objc2-no-write-barrier.m 7 int ival;
  /external/chromium_org/third_party/sqlite/src/src/
test_async.c 164 int iVal;
182 if( Tcl_GetIndexFromObj(interp, objv[2], az, "value", 0, &iVal) ){
188 if( Tcl_GetIntFromObj(interp, objv[2], &iVal) ){
194 if( Tcl_GetBooleanFromObj(interp, objv[2], &iVal) ){
200 rc = sqlite3async_control(eOpt, iVal);
207 SQLITEASYNC_GET_LOCKFILES, &iVal);
216 Tcl_SetObjResult(interp, Tcl_NewStringObj(az[iVal], -1));
218 Tcl_SetObjResult(interp, Tcl_NewIntObj(iVal));
  /system/media/audio_utils/
primitives.c 117 int32_t ival = clamp24_from_float(*src++); local
120 *dst++ = ival >> 16;
121 *dst++ = ival >> 8;
122 *dst++ = ival;
124 *dst++ = ival;
125 *dst++ = ival >> 8;
126 *dst++ = ival >> 16;
134 int32_t ival = clamp24_from_q8_23(*src++); local
137 *dst++ = ival >> 16;
138 *dst++ = ival >> 8
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Utility/
TypeConversion.c 290 Py_ssize_t ival; local
314 ival = PyInt_AsSsize_t(x);
316 return ival;
319 static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t ival) {
321 if (ival <= LONG_MAX)
322 return PyInt_FromLong((long)ival);
324 unsigned char *bytes = (unsigned char *) &ival;
329 return PyInt_FromSize_t(ival);
377 long ival; local
407 ival = __Pyx_PyInt_As_long(x)
428 long ival; local
    [all...]
  /external/iproute2/misc/
rtacct.c 67 __u32 ival[256*4]; member in struct:rtacct_data
305 __u32 *ival; local
308 ival = read_kern_table(_ival);
312 __u32 incr = ival[i] - kern_db->ival[i];
314 if (ival[i] == 0 && incr == 0 &&
319 kern_db->ival[i] = ival[i];
354 void pad_kern_table(struct rtacct_data *dat, __u32 *ival)
358 if (dat->ival != ival
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
int.pxd 37 object PyInt_FromLong(long ival)
39 # Create a new integer object with a value of ival.
46 object PyInt_FromSsize_t(Py_ssize_t ival)
48 # Create a new integer object with a value of ival. If the value
  /external/clang/test/CodeGenCXX/
global-block-literal-helpers.cpp 16 int ival = func(^{}, ^{}, ^{}); member in namespace:N
  /external/qemu/distrib/sdl-1.2.15/src/thread/symbian/
SDL_syssem.cpp 99 iTime(aTime), iHandle(aHandle), iVal(0) {}
102 TInt iVal;
114 info->iVal = SDL_MUTEX_TIMEOUT;
175 return info->iVal;
  /external/fio/
options.c 1335 { .ival = "none",
1339 { .ival = "exclusive",
1344 .ival = "readwrite",
1373 { .ival = "read",
1377 { .ival = "write",
1381 { .ival = "trim",
1385 { .ival = "randread",
1389 { .ival = "randwrite",
1393 { .ival = "randtrim",
1397 { .ival = "rw"
    [all...]
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
glcpp-parse.c 160 _token_create_ival (void *ctx, int type, int ival);
    [all...]
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
SmartPtr.h 151 int iVal = android_atomic_dec(m_pRefCount);
152 if (iVal > 1)
153 return iVal - 1;
  /system/media/audio_utils/tests/
primitives_tests.cpp 36 int16_t ival = clamp16_from_float(f / (1 << 15)); local
39 ALOGV("clamp16_from_float(%f) = %d\n", f, ival);
41 EXPECT_EQ(ival, lim16pos);
43 EXPECT_EQ(ival, lim16neg);
48 int ival2 = clamp16_from_float(float_from_i16(ival));
49 int diff = abs(ival - ival2);
56 int32_t ival = clamp24_from_float(f / (1 << 23)); local
59 ALOGV("clamp24_from_float(%f) = %d\n", f, ival);
61 EXPECT_EQ(ival, lim24pos);
63 EXPECT_EQ(ival, lim24neg)
    [all...]
  /libcore/luni/src/main/java/java/math/
Logical.java 373 int iVal = val.getFirstNonzeroDigit();
376 if (iVal >= that.numberLength) {
383 int i = iVal;
384 if (iVal < iThat) {
403 } else if (iThat < iVal ) {
480 int iVal = val.getFirstNonzeroDigit();
483 if (iVal >= that.numberLength) {
493 if (iThat == iVal) {
494 resDigits[iVal] = -(-val.digits[iVal] | -that.digits[iVal])
    [all...]
  /system/core/toolbox/upstream-netbsd/bin/sleep/
sleep.c 71 double fval, ival, val; local
114 ival = floor(val);
115 fval = (1000000000 * (val-ival));
116 ntime.tv_sec = ival;

Completed in 1717 milliseconds

1 2 3 4 5 6