Searched defs:ival (Results 1 - 25 of 53) sorted by relevance

123

/external/srec/srec/clib/
H A Dlog_add.h23 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) argument
34 return (logtab->table[(int)(ival)]);
/external/clang/test/CodeGenCXX/
H A Dglobal-block-literal-helpers.cpp16 int ival = func(^{}, ^{}, ^{}); member in namespace:N
/external/libnl/src/lib/
H A Dneigh.c58 int ival; local
60 if (!(ival = rtnl_link_name2i(link_cache, arg)))
63 rtnl_neigh_set_ifindex(neigh, ival);
H A Dqdisc.c35 int ival; local
37 if (!(ival = rtnl_link_name2i(link_cache, arg)))
40 rtnl_qdisc_set_ifindex(qdisc, ival);
H A Daddr.c57 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);
H A Droute.c154 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)) <
262 int ival; local
[all...]
/external/libvorbis/lib/
H A Dtone.c38 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>>
[all...]
/external/libnl/src/cls/
H A Dutils.c26 int ival; local
28 if (!(ival = rtnl_link_name2i(link_cache, arg)))
31 rtnl_cls_set_ifindex(cls, ival);
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DTextStream.cpp45 int ival = static_cast<int>(val); local
46 double dval = static_cast<double>(ival);
/external/stlport/test/unit/
H A Dnum_facets_test.cpp91 int ival = 1234567890; local
93 fostr << ival; local
/external/bison/examples/calc++/
H A Dcalc++-parser.hh81 int ival; member in union:yy::calcxx_parser::semantic_type
/external/chromium_org/third_party/skia/src/core/
H A DSkMath.cpp190 int ival = (int)(val * SK_Fixed1); local
191 table[i] = SkToU16(ival);
/external/skia/src/core/
H A DSkMath.cpp190 int ival = (int)(val * SK_Fixed1); local
191 table[i] = SkToU16(ival);
/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DTypeConversion.c290 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) { argument
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
428 long ival; local
[all...]
H A DStringTools.c731 Py_ssize_t ival; local
738 ival = (unsigned char) (PyString_AS_STRING(value)[0]);
743 ival = __Pyx_PyIndex_AsSsize_t(value);
744 if (unlikely((ival < 0) | (ival > 255))) {
745 if (ival == -1 && PyErr_Occurred())
751 return __Pyx_PyByteArray_Append(bytearray, ival);
/external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.cpp661 int TiXmlElement::QueryIntAttribute( const char* name, int* ival ) const
666 return attrib->QueryIntValue( ival );
676 int ival = 0; local
677 int result = node->QueryIntValue( &ival );
678 *value = (unsigned)ival;
710 int TiXmlElement::QueryIntAttribute( const std::string& name, int* ival ) const
715 return attrib->QueryIntValue( ival );
1236 int TiXmlAttribute::QueryIntValue( int* ival ) const
1238 if ( TIXML_SSCANF( value.c_str(), "%d", ival ) == 1 )
/external/fio/
H A Dparse.h28 const char *ival; /* string option */ member in struct:value_pair
/external/iproute2/misc/
H A Dnstat.c78 unsigned long ival; member in struct:nstat_ent
144 n->ival = (unsigned long)val;
207 if (sscanf(p+1, "%lu", &n->ival) != 1)
209 n->val = n->ival;
337 unsigned long incr = h1->ival - n->ival;
339 n->ival = h1->ival;
H A Drtacct.c67 __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) argument
358 if (dat->ival !
[all...]
/external/opencv/ml/src/
H A Dmlnbayes.cpp338 int ival; local
367 ival = cls_labels->data.i[cls];
371 results->data.i[k*rstep] = ival;
373 results->data.fl[k*rstep] = (float)ival;
376 value = (float)ival;
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.cpp661 int TiXmlElement::QueryIntAttribute( const char* name, int* ival ) const
666 return attrib->QueryIntValue( ival );
676 int ival = 0; local
677 int result = node->QueryIntValue( &ival );
678 *value = (unsigned)ival;
710 int TiXmlElement::QueryIntAttribute( const std::string& name, int* ival ) const
715 return attrib->QueryIntValue( ival );
1236 int TiXmlAttribute::QueryIntValue( int* ival ) const
1238 if ( TIXML_SSCANF( value.c_str(), "%d", ival ) == 1 )
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcnmdptst.c189 int32_t ival, ilval, p, v, lneed; local
249 ival = 0;
279 u_uastrcpy(uvalfor, valFormat[v+ival]);
281 log_verbose("FAIL: Expected %s ( %s )\n", valFormat[v+ival], u_austrcpy(tempMsgBug, uvalfor) );
287 if (a != valParse[v+ival])
288 log_err("FAIL: Expected: %e, Got: %g\n", valParse[v+ival], a);
319 log_err("FAIL: Expected : %e\n", valParse[v+ival]);
327 ival += val_length;
/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/
H A Dglcpp.h53 intmax_t ival; member in union:YYSTYPE
/external/chromium_org/third_party/skia/tests/
H A DMathTest.cpp264 static void test_int2float(skiatest::Reporter* reporter, int ival) { argument
265 float x0 = (float)ival;
266 float x1 = SkIntToFloatCast(ival);
297 int ival = rand.nextU() & 0xFFFFFF; local
298 test_int2float(reporter, ival);
299 test_int2float(reporter, -ival);
/external/icu/icu4c/source/test/cintltst/
H A Dcnmdptst.c189 int32_t ival, ilval, p, v, lneed; local
249 ival = 0;
279 u_uastrcpy(uvalfor, valFormat[v+ival]);
281 log_verbose("FAIL: Expected %s ( %s )\n", valFormat[v+ival], u_austrcpy(tempMsgBug, uvalfor) );
287 if (a != valParse[v+ival])
288 log_err("FAIL: Expected: %e, Got: %g\n", valParse[v+ival], a);
319 log_err("FAIL: Expected : %e\n", valParse[v+ival]);
327 ival += val_length;

Completed in 1147 milliseconds

123