HomeSort by relevance Sort by last modified time
    Searched refs:narg (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_fog.c 56 #define NEG_EXP( result, narg ) \
58 GLfloat f = (GLfloat) (narg * (1.0/FOG_INCR)); \
66 #define NEG_EXP( result, narg ) \
68 result = exp(-narg); \
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lauxlib.c 153 LUALIB_API int luaL_argerror (lua_State *L, int narg, const char *extramsg) {
156 return luaL_error(L, "bad argument #%d (%s)", narg, extramsg);
159 narg--; /* do not count `self' */
160 if (narg == 0) /* error is in the self argument itself? */
167 narg, ar.name, extramsg);
171 static int typeerror (lua_State *L, int narg, const char *tname) {
173 tname, luaL_typename(L, narg));
174 return luaL_argerror(L, narg, msg);
178 static void tag_error (lua_State *L, int narg, int tag) {
179 typeerror(L, narg, lua_typename(L, tag));
    [all...]
lcorolib.c 20 static int auxresume (lua_State *L, lua_State *co, int narg) {
22 if (!lua_checkstack(co, narg)) {
30 lua_xmove(L, co, narg);
31 status = lua_resume(co, L, narg);
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/skia/third_party/lua/src/
lauxlib.c 153 LUALIB_API int luaL_argerror (lua_State *L, int narg, const char *extramsg) {
156 return luaL_error(L, "bad argument #%d (%s)", narg, extramsg);
159 narg--; /* do not count `self' */
160 if (narg == 0) /* error is in the self argument itself? */
167 narg, ar.name, extramsg);
171 static int typeerror (lua_State *L, int narg, const char *tname) {
173 tname, luaL_typename(L, narg));
174 return luaL_argerror(L, narg, msg);
178 static void tag_error (lua_State *L, int narg, int tag) {
179 typeerror(L, narg, lua_typename(L, tag))
    [all...]
lcorolib.c 20 static int auxresume (lua_State *L, lua_State *co, int narg) {
22 if (!lua_checkstack(co, narg)) {
30 lua_xmove(L, co, narg);
31 status = lua_resume(co, L, narg);
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/
lauxlib.c 153 LUALIB_API int luaL_argerror (lua_State *L, int narg, const char *extramsg) {
156 return luaL_error(L, "bad argument #%d (%s)", narg, extramsg);
159 narg--; /* do not count `self' */
160 if (narg == 0) /* error is in the self argument itself? */
167 narg, ar.name, extramsg);
171 static int typeerror (lua_State *L, int narg, const char *tname) {
173 tname, luaL_typename(L, narg));
174 return luaL_argerror(L, narg, msg);
178 static void tag_error (lua_State *L, int narg, int tag) {
179 typeerror(L, narg, lua_typename(L, tag))
    [all...]
lcorolib.c 20 static int auxresume (lua_State *L, lua_State *co, int narg) {
22 if (!lua_checkstack(co, narg)) {
30 lua_xmove(L, co, narg);
31 status = lua_resume(co, L, narg);
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...]
  /external/boringssl/src/crypto/perlasm/
x86_64-xlate.pl 397 my $narg = $current_function->{narg};
398 $narg=6 if (!defined($narg));
399 $func .= " movq %rcx,%rdi\n" if ($narg>0);
400 $func .= " movq %rdx,%rsi\n" if ($narg>1);
401 $func .= " movq %r8,%rdx\n" if ($narg>2);
402 $func .= " movq %r9,%rcx\n" if ($narg>3);
403 $func .= " movq 40(%rsp),%r8\n" if ($narg>4);
404 $func .= " movq 48(%rsp),%r9\n" if ($narg>5)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
decode.go 294 narg int // number of arguments written to inst
967 inst.Args[narg] = fixedArg[x]
968 narg++
971 inst.Args[narg] = Imm(imm8)
972 narg++
975 inst.Args[narg] = Imm(uint8(imm8))
976 narg++
979 inst.Args[narg] = Imm(int16(imm))
980 narg++
983 inst.Args[narg] = Imm(uint16(imm)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
decode.go 294 narg int // number of arguments written to inst
967 inst.Args[narg] = fixedArg[x]
968 narg++
971 inst.Args[narg] = Imm(imm8)
972 narg++
975 inst.Args[narg] = Imm(uint8(imm8))
976 narg++
979 inst.Args[narg] = Imm(int16(imm))
980 narg++
983 inst.Args[narg] = Imm(uint16(imm)
    [all...]
  /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)
  /bionic/libc/arch-mips/include/machine/
asm.h 99 #define MKFSIZ(narg,locals) (((narg+locals)*REGSZ+31)&(~31))
  /external/mesa3d/src/mesa/tnl/
t_vb_fog.c 55 #define NEG_EXP( result, narg ) \
57 GLfloat f = (GLfloat) (narg * (1.0/FOG_INCR)); \
65 #define NEG_EXP( result, narg ) \
67 result = exp(-narg); \
  /development/ndk/platforms/android-21/arch-mips/include/machine/
asm.h 116 #define MKFSIZ(narg,locals) (((narg+locals)*REGSZ+31)&(~31))
  /development/ndk/platforms/android-21/arch-mips64/include/machine/
asm.h 116 #define MKFSIZ(narg,locals) (((narg+locals)*REGSZ+31)&(~31))
  /prebuilts/ndk/r10/platforms/android-21/arch-mips/usr/include/machine/
asm.h 116 #define MKFSIZ(narg,locals) (((narg+locals)*REGSZ+31)&(~31))
  /prebuilts/ndk/r10/platforms/android-21/arch-mips64/usr/include/machine/
asm.h 116 #define MKFSIZ(narg,locals) (((narg+locals)*REGSZ+31)&(~31))
  /prebuilts/ndk/r10/platforms/android-23/arch-mips/usr/include/machine/
asm.h 116 #define MKFSIZ(narg,locals) (((narg+locals)*REGSZ+31)&(~31))
  /prebuilts/ndk/r10/platforms/android-23/arch-mips64/usr/include/machine/
asm.h 116 #define MKFSIZ(narg,locals) (((narg+locals)*REGSZ+31)&(~31))
  /prebuilts/ndk/r11/platforms/android-21/arch-mips/usr/include/machine/
asm.h 116 #define MKFSIZ(narg,locals) (((narg+locals)*REGSZ+31)&(~31))
  /prebuilts/ndk/r11/platforms/android-21/arch-mips64/usr/include/machine/
asm.h 116 #define MKFSIZ(narg,locals) (((narg+locals)*REGSZ+31)&(~31))
  /prebuilts/ndk/r11/platforms/android-23/arch-mips/usr/include/machine/
asm.h 116 #define MKFSIZ(narg,locals) (((narg+locals)*REGSZ+31)&(~31))

Completed in 1061 milliseconds

1 2 3 4