Searched refs:ival (Results 1 - 25 of 64) sorted by relevance

123

/external/fio/exp/
H A Dexpression-parser.y27 long long ival;
53 long long ival;
77 *result = $1.ival;
82 *result = $1.ival;
88 $$.ival = $1.ival + $3.ival;
90 $$.ival = (long long) ($1.dval + $3.dval);
96 $$.ival = $1.ival
[all...]
H A Dtest-expression-parser.c27 extern int evaluate_arithmetic_expression(const char *buffer, long long *ival,
H A Dexpression-parser.l50 (yylval).v.ival = (i_val); \
136 yylval.v.ival = (long long) dval;
150 yylval.v.ival = intval;
165 yylval.v.ival = intval;
/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/clang/test/CodeGenCXX/
H A Dglobal-block-literal-helpers.cpp16 int ival = func(^{}, ^{}, ^{}); member in namespace:N
/external/libnl/src/lib/
H A Droute.c154 int ival; local
171 if (!(ival = rtnl_link_name2i(link_cache, arg)))
174 rtnl_route_nh_set_ifindex(nh, ival);
228 int ival; local
230 if ((ival = rtnl_str2scope(arg)) < 0)
233 rtnl_route_set_scope(route, ival);
258 int ival; local
260 if ((ival = nl_str2rtntype(arg)) < 0)
263 if ((ival = rtnl_route_set_type(route, ival)) <
270 int ival; local
[all...]
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 Dneigh.c58 int ival; local
60 if (!(ival = rtnl_link_name2i(link_cache, arg)))
63 rtnl_neigh_set_ifindex(neigh, ival);
/external/iproute2/misc/
H A Drtacct.c67 __u32 ival[256*4]; member in struct:rtacct_data
304 __u32 *ival; local
307 ival = read_kern_table(_ival);
311 __u32 incr = ival[i] - kern_db->ival[i];
313 if (ival[i] == 0 && incr == 0 &&
318 kern_db->ival[i] = ival[i];
353 static void pad_kern_table(struct rtacct_data *dat, __u32 *ival) argument
357 if (dat->ival !
[all...]
H A Difstat.c64 __u32 ival[MAXS]; member in struct:ifstat_ent
138 memcpy(&n->ival, RTA_DATA(tb[IFLA_STATS]), sizeof(n->ival));
141 n->val[i] = n->ival[i];
219 n->ival[i] = (__u32)n->val[i];
537 if ((long)(h1->ival[i] - n->ival[i]) < 0) {
538 memset(n->ival, 0, sizeof(n->ival));
544 unsigned long incr = h1->ival[
[all...]
/external/valgrind/none/tests/
H A Dunit_debuglog.c143 long long ival = -1004005; local
144 run("|%lld|", ival);
145 // runint("|%'lld|", ival); // locale specific (LC_NUMERIC)
146 run("|%15lld|", ival);
147 run("|%-15lld|", ival);
148 // runint("|%'-15lld|", ival); // locale specific (LC_NUMERIC)
149 run("|%100lld|", ival);
150 run("|%*lld|", 13, ival);
/external/ltp/lib/
H A Dself_exec.c165 int ival; local
185 ival = va_arg(ap, int);
186 if (asprintf(&arg, "%s,%d", arg, ival) < 0) {
/external/fio/
H A Doptions.c1337 { .ival = "none",
1341 { .ival = "exclusive",
1346 .ival = "readwrite",
1375 { .ival = "read",
1379 { .ival = "write",
1383 { .ival = "trim",
1387 { .ival = "randread",
1391 { .ival = "randwrite",
1395 { .ival = "randtrim",
1399 { .ival
4127 add_opt_posval(const char *optname, const char *ival, const char *help) argument
4146 del_opt_posval(const char *optname, const char *ival) argument
[all...]
H A Dparse.c32 return strlen(vp2->ival) - strlen(vp1->ival);
44 if (!vp->ival || vp->ival[0] == '\0')
64 } else if (!o->posval[0].ival) {
82 if (!vp->ival)
85 log_info("%20s: %-10s", i == 0 ? "valid values" : "", vp->ival);
271 extern int evaluate_arithmetic_expression(const char *buffer, long long *ival,
282 long long ival; local
286 rc = evaluate_arithmetic_expression(str, &ival,
305 long long ival; local
[all...]
H A Dparse.h28 const char *ival; /* string option */ member in struct:value_pair
H A Dgoptions.c319 while (vp->ival) {
320 if (!strcmp(vp->ival, text)) {
341 while (vp->ival) {
342 gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(c->combo), vp->ival);
343 if (o->def && !strcmp(vp->ival, o->def))
364 while (vp->ival) {
386 while (vp->ival) {
387 gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(c->combo), vp->ival);
443 while (vp->ival) {
444 m->checks[i] = gtk_check_button_new_with_label(vp->ival);
[all...]
/external/bison/etc/
H A Dbench.pl.in156 semantic_value ival;
174 %token <ival> NUM "number"
175 %type <ival> exp
279 yylval.ival = read_signed_integer ();
/external/dtc/
H A Dfdtput.c79 int ival; local
111 sscanf(*arg, fmt, &ival);
113 *iptr = cpu_to_fdt32(ival);
115 *ptr = (uint8_t)ival;
120 ival);
/external/syslinux/com32/gpllib/zzjson/
H A Dzzjson_parse.c143 unsigned long long ival = 0, expo = 0; local
164 ival *= 10;
165 ival += c - '0';
214 dval = sign * (long long) ival;
229 zzjson->value.number.val.ival = ival;
H A Dzzjson_print.c89 PRINT("%llu", zzjson->value.number.val.ival);
/external/bison/examples/calc++/
H A Dcalc++-parser.hh81 int ival; member in union:yy::calcxx_parser::semantic_type
/external/svox/pico/lib/
H A Dpicopal.c182 picopal_int32 ival; local
194 ival = va_arg(args,int);
195 picopal_sprintf(buf,(picopal_char *)"%i",ival);
/external/syslinux/com32/gplinclude/zzjson/
H A Dzzjson.h75 unsigned long long ival; member in union:ZZJSON::__anon19284::__anon19288::__anon19289
/external/icu/icu4c/source/test/cintltst/
H A Dcnmdptst.c192 int32_t ival, ilval, p, v, lneed; local
252 ival = 0;
282 u_uastrcpy(uvalfor, valFormat[v+ival]);
284 log_verbose("FAIL: Expected %s ( %s )\n", valFormat[v+ival], u_austrcpy(tempMsgBug, uvalfor) );
290 if (a != valParse[v+ival])
291 log_err("FAIL: Expected: %e, Got: %g\n", valParse[v+ival], a);
322 log_err("FAIL: Expected : %e\n", valParse[v+ival]);
330 ival += val_length;
/external/linux-kselftest/tools/testing/selftests/breakpoints/
H A Dbreakpoint_test.c175 char cval; short sval; int ival; long long lval; local
187 ival = *(int *)&dummy_var[i];

Completed in 436 milliseconds

123