HomeSort by relevance Sort by last modified time
    Searched defs:narg (Results 1 - 15 of 15) sorted by null

  /external/ltp/testcases/kernel/firmware/fw_load_user/
fw_load.c 62 static char *narg; variable
67 {"n:", &nflag, &narg},
109 if (sscanf(narg, "%i", &fw_size) != 1)
  /external/ltp/testcases/kernel/controllers/cgroup_xattr/
cgroup_xattr.c 95 static char *narg; variable
100 {"n:", &nflag, &narg},
168 if (sscanf(narg, "%i", &value_size) != 1)
  /external/ltp/testcases/kernel/syscalls/kill/
kill10.c 204 char *narg, *garg, *darg; variable
208 {"n:", &nflag, &narg}, /* -n #procs */
222 if (sscanf(narg, "%i", &num_procs) != 1) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lua.c 172 static int docall (lua_State *L, int narg, int nres) {
174 int base = lua_gettop(L) - narg; /* function index */
179 status = lua_pcall(L, narg, nres, base);
193 int narg; local
197 narg = argc - (n + 1); /* number of arguments to the script */
198 luaL_checkstack(L, narg + 3, "too many arguments to script");
201 lua_createtable(L, narg, n + 1);
206 return narg;
329 int narg = getargs(L, argv, n); /* collect arguments */ local
335 lua_insert(L, -(narg+1))
    [all...]
  /external/syslinux/com32/lua/src/
lua.c 179 static int docall (lua_State *L, int narg, int nres) {
181 int base = lua_gettop(L) - narg; /* function index */
186 status = lua_pcall(L, narg, nres, base);
200 int narg; local
204 narg = argc - (n + 1); /* number of arguments to the script */
205 luaL_checkstack(L, narg + 3, "too many arguments to script");
208 lua_createtable(L, narg, n + 1);
213 return narg;
336 int narg = getargs(L, argv, n); /* collect arguments */ local
342 lua_insert(L, -(narg+1))
    [all...]
  /toolchain/binutils/binutils-2.27/gas/
macro.c 597 /* Add a special NARG formal, which macro_expand will set to the
600 the name $NARG. At least until we find an exception. */
602 name = "$NARG";
604 name = "NARG";
1032 int narg = 0; local
1120 ++narg;
1162 ++narg;
1196 sb_add_string (&t, macro_strip_at ? "$NARG" : "NARG");
1198 sprintf (buffer, "%d", narg);
    [all...]
  /external/one-true-awk/
awk.h 137 struct Node *narg[1]; /* variable: actual size set by calling malloc */ member in struct:Node
  /toolchain/binutils/binutils-2.27/opcodes/
mep-asm.c 631 expand_macro (arg *args, int narg, macro *mac)
638 /* printf("expanding macro %s with %d args\n", mac->name, narg + 1); */
644 ((*(e + 1) - '1') <= narg))
677 int narg = -1;
708 narg = 0;
709 args[narg].start = in + 1;
710 args[narg].len = 0;
722 narg++;
723 args[narg].start = (in + 1);
724 args[narg].len = 0
676 int narg = -1; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
connection.c 850 static char *kwlist[] = {"name", "narg", "func", NULL, NULL};
854 int narg; local
862 &name, &narg, &func))
867 rc = sqlite3_create_function(self->db, name, narg, SQLITE_UTF8, (void*)func, _pysqlite_func_callback, NULL, NULL);
    [all...]
  /external/dhcpcd-6.8.2/
if-options.c 399 uint32_t narg; local
402 narg = (uint32_t)strtou(arg, NULL, 0, 0, UINT32_MAX, &e);
405 narg = htonl(narg);
406 memcpy(iaid, &narg, sizeof(narg));
    [all...]
  /external/ltp/testcases/network/netstress/
netstress.c 114 static char *narg, *Narg, *qarg, *rarg, *Rarg, *aarg, *Targ, *barg, *targ, variable
719 if (tst_parse_int(narg, &init_cln_msg_len, min_msg_len, max_msg_len))
720 tst_brk(TBROK, "Invalid client msg size '%s'", narg);
721 if (tst_parse_int(Narg, &init_srv_msg_len, min_msg_len, max_msg_len))
722 tst_brk(TBROK, "Invalid server msg size '%s'", Narg);
844 {"n:", &narg, "-n x Client message size"},
845 {"N:", &Narg, "-N x Server message size"},
  /external/python/cpython2/Modules/_sqlite/
connection.c 863 static char *kwlist[] = {"name", "narg", "func", NULL, NULL};
867 int narg; local
875 &name, &narg, &func))
880 rc = sqlite3_create_function(self->db, name, narg, SQLITE_UTF8, (void*)func, _pysqlite_func_callback, NULL, NULL);
    [all...]
  /external/python/cpython3/Modules/_sqlite/
connection.c 822 static char *kwlist[] = {"name", "narg", "func", NULL, NULL};
826 int narg; local
834 &name, &narg, &func))
839 rc = sqlite3_create_function(self->db, name, narg, SQLITE_UTF8, (void*)func, _pysqlite_func_callback, NULL, NULL);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
regparse.c 529 INamesArg narg; local
532 narg.ret = 0;
534 narg.func = func;
535 narg.reg = reg;
536 narg.arg = arg;
537 narg.enc = reg->enc; /* should be pattern encoding. */
538 onig_st_foreach(t, i_names, (HashDataType )(UINTN)&narg);
540 return narg.ret;
    [all...]
  /external/mksh/src/
edit.c 2248 size_t ndel, narg; local
    [all...]

Completed in 1329 milliseconds