Home
last modified time | relevance | path

Searched refs:narg (Results 1 – 24 of 24) sorted by relevance

/external/one-true-awk/
Dparse.c56 x->narg[0]=b; in node1()
66 x->narg[0] = b; in node2()
67 x->narg[1] = c; in node2()
77 x->narg[0] = b; in node3()
78 x->narg[1] = c; in node3()
79 x->narg[2] = d; in node3()
89 x->narg[0] = b; in node4()
90 x->narg[1] = c; in node4()
91 x->narg[2] = d; in node4()
92 x->narg[3] = e; in node4()
[all …]
Dawkgram.y458 return isvalue(p) && ((Cell *) (p->narg[0]))->csub == CCON;
463 return ((Cell *)(p->narg[0]))->sval;
481 if (strcmp(s, ((Cell *)(vl->narg[0]))->nval) == 0) {
Dawk.h145 struct Node *narg[1]; /* variable: actual size set by calling malloc */ member
Db.c43 #define left(v) (v)->narg[0]
44 #define right(v) (v)->narg[1]
Dytab.c3665 return isvalue(p) && ((Cell *) (p->narg[0]))->csub == CCON; in constnode()
3670 return ((Cell *)(p->narg[0]))->sval; in strnode()
3688 if (strcmp(s, ((Cell *)(vl->narg[0]))->nval) == 0) { in checkdup()
Drun.c151 x = (Cell *) (a->narg[0]); in execute()
161 x = (*proc)(a->narg, a->nobj); in execute()
/external/boringssl/src/crypto/perlasm/
Dx86_64-xlate.pl400 my $narg = $current_function->{narg};
401 $narg=6 if (!defined($narg));
402 $func .= " movq %rcx,%rdi\n" if ($narg>0);
403 $func .= " movq %rdx,%rsi\n" if ($narg>1);
404 $func .= " movq %r8,%rdx\n" if ($narg>2);
405 $func .= " movq %r9,%rcx\n" if ($narg>3);
406 $func .= " movq 40(%rsp),%r8\n" if ($narg>4);
407 $func .= " movq 48(%rsp),%r9\n" if ($narg>5);
424 my $narg = $current_function->{narg};
425 $narg=6 if (!defined($narg));
[all …]
/external/mesa3d/src/mesa/drivers/dri/r200/
Dradeon_fog.c58 #define NEG_EXP( result, narg ) \ argument
60 GLfloat f = (GLfloat) (narg * (1.0/FOG_INCR)); \
68 #define NEG_EXP( result, narg ) \ argument
70 result = exp(-narg); \
/external/mesa3d/src/mesa/drivers/dri/radeon/
Dradeon_fog.c58 #define NEG_EXP( result, narg ) \ argument
60 GLfloat f = (GLfloat) (narg * (1.0/FOG_INCR)); \
68 #define NEG_EXP( result, narg ) \ argument
70 result = exp(-narg); \
/external/lua/src/
Dlcorolib.c28 static int auxresume (lua_State *L, lua_State *co, int narg) { in auxresume() argument
30 if (!lua_checkstack(co, narg)) { in auxresume()
38 lua_xmove(L, co, narg); in auxresume()
39 status = lua_resume(co, L, narg); in auxresume()
Dlua.c198 static int docall (lua_State *L, int narg, int nres) { in docall() argument
200 int base = lua_gettop(L) - narg; /* function index */ in docall()
205 status = lua_pcall(L, narg, nres, base); in docall()
227 int i, narg; in createargtable() local
229 narg = argc - (script + 1); /* number of positive indices */ in createargtable()
230 lua_createtable(L, narg, script + 1); in createargtable()
Dldo.c603 static int resume_error (lua_State *L, const char *msg, int narg) { in resume_error() argument
604 L->top -= narg; /* remove args from the stack */ in resume_error()
Dlua.h291 LUA_API int (lua_resume) (lua_State *L, lua_State *from, int narg);
/external/mesa3d/src/mesa/tnl/
Dt_vb_fog.c55 #define NEG_EXP( result, narg ) \ argument
57 GLfloat f = (GLfloat) (narg * (1.0F / FOG_INCR)); \
65 #define NEG_EXP( result, narg ) \ argument
67 result = exp(-narg); \
/external/bcc/src/lua/src/
Dmain.c87 static int docall(lua_State *L, int narg, int clear) { in docall() argument
89 int base = lua_gettop(L) - narg; /* function index */ in docall()
93 status = lua_pcall(L, narg, (clear ? 0 : LUA_MULTRET), base); in docall()
/external/ltp/testcases/kernel/firmware/fw_load_user/
Dfw_load.c62 static char *narg; variable
67 {"n:", &nflag, &narg},
109 if (sscanf(narg, "%i", &fw_size) != 1) in setup()
/external/ltp/testcases/kernel/controllers/cgroup_xattr/
Dcgroup_xattr.c95 static char *narg; variable
100 {"n:", &nflag, &narg},
168 if (sscanf(narg, "%i", &value_size) != 1) in setup()
/external/ltp/testcases/kernel/syscalls/kill/
Dkill10.c204 char *narg, *garg, *darg; variable
208 {"n:", &nflag, &narg}, /* -n #procs */
222 if (sscanf(narg, "%i", &num_procs) != 1) { in main()
/external/ltp/testcases/network/netstress/
Dnetstress.c121 static char *narg, *Narg, *qarg, *rarg, *Rarg, *aarg, *Targ, *barg, *targ, variable
854 if (tst_parse_int(narg, &init_cln_msg_len, min_msg_len, max_msg_len)) in setup()
855 tst_brk(TBROK, "Invalid client msg size '%s'", narg); in setup()
1005 {"n:", &narg, "-n x Client message size"},
/external/python/cpython2/Modules/_sqlite/
Dconnection.c867 int narg; in pysqlite_connection_create_function() local
875 &name, &narg, &func)) in pysqlite_connection_create_function()
880 …rc = sqlite3_create_function(self->db, name, narg, SQLITE_UTF8, (void*)func, _pysqlite_func_callba… in pysqlite_connection_create_function()
/external/python/cpython3/Modules/_sqlite/
Dconnection.c817 int narg; in pysqlite_connection_create_function() local
825 &name, &narg, &func)) in pysqlite_connection_create_function()
833 …rc = sqlite3_create_function(self->db, name, narg, SQLITE_UTF8, (void*)func, _pysqlite_func_callba… in pysqlite_connection_create_function()
/external/bcc/src/lua/bcc/vendor/
Dargparse.lua426 function Argument:_get_argname(narg)
430 return argname[narg]
/external/mksh/src/
Dedit.c2248 size_t ndel, narg; in x_kill() local
2250 if (x_arg_defaulted || (narg = x_arg) > lastcol) in x_kill()
2251 narg = lastcol; in x_kill()
2252 if (narg < col) { in x_kill()
2253 x_goto(xbuf + narg); in x_kill()
2254 ndel = col - narg; in x_kill()
2256 ndel = narg - col; in x_kill()
/external/u-boot/lib/
Dslre.c37 int narg; member