Searched refs:arg (Results 51 - 75 of 1618) sorted by relevance

1234567891011>>

/external/qemu/target-i386/
H A Dkvm-gs-restore.h5 int no_gs_ioctl(int fd, int type, void *arg);
/external/webkit/Source/JavaScriptCore/interpreter/
H A DCallFrameClosure.h42 void setArgument(int arg, JSValue value) argument
44 if (arg < expectedParams)
45 newCallFrame[arg - RegisterFile::CallFrameHeaderSize - expectedParams] = value;
47 newCallFrame[arg - RegisterFile::CallFrameHeaderSize - expectedParams - providedParams] = value;
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptfunction_p.h45 QNativeFunctionWithArgData(QScriptEnginePrivate* engine, QScriptEngine::FunctionWithArgSignature fun, void* arg) argument
48 , arg(arg)
54 void* arg; member in struct:QNativeFunctionWithArgData
/external/icu4c/samples/date/
H A Ddate.c63 char *arg; local
72 arg = argv[optind];
75 if(strcmp(arg, "-v") == 0 || strcmp(arg, "--version") == 0) {
79 else if(strcmp(arg, "-h") == 0 || strcmp(arg, "--help") == 0) {
83 else if(strcmp(arg, "-u") == 0 || strcmp(arg, "--gmt") == 0) {
87 else if(strcmp(arg, "-f") == 0 || strcmp(arg, "
[all...]
/external/openssh/
H A Dreadconf.c357 char *s, **charptr, *endofnumber, *keyword, *arg, *arg2; local
393 arg = strdelim(&s);
394 if (!arg || *arg == '\0')
397 if ((value = convtime(arg)) == -1)
407 arg = strdelim(&s);
408 if (!arg || *arg == '\0')
411 if (strcmp(arg, "yes") == 0 || strcmp(arg, "tru
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/res/
H A DStringArrayWrapper.java31 public StringArrayWrapper(String[] arg){ argument
32 m_string = arg;
/external/clang/test/CodeGen/
H A D2008-01-21-PackedStructField.c14 struct S2504 arg, *p; local
16 arg.f = i;
/external/clang/test/Sema/
H A Dreturn-noreturn.c23 __attribute__((__noreturn__)) void* test3(int arg) { argument
27 __attribute__((__noreturn__)) void* test3_positive(int arg) { argument
/external/compiler-rt/lib/asan/tests/
H A Dasan_exceptions_test.cc11 void Throw(const char& arg) const {
13 throw arg;
/external/dropbear/libtommath/
H A Dbn_mp_is_square.c40 /* Store non-zero to ret if arg is square, and zero if not */
41 int mp_is_square(mp_int *arg,int *ret) argument
51 if (arg->sign == MP_NEG) {
56 if (arg->used == 0) {
61 if (rem_128[127 & DIGIT(arg,0)] == 1) {
66 if ((res = mp_mod_d(arg,105,&c)) != MP_OKAY) {
77 if ((res = mp_mod(arg,&t,&t)) != MP_OKAY) {
93 /* Final check - is sqr(sqrt(arg)) == arg ? */
94 if ((res = mp_sqrt(arg,
[all...]
/external/linux-tools-perf/util/include/asm/
H A Dbug.h4 #define __WARN_printf(arg...) do { fprintf(stderr, arg); } while (0)
/external/openssh/regress/
H A Dscp-ssh-wrapper.sh19 # Discard all but last argument. We use arg later.
21 arg="$1"
55 exec $arg
/external/oprofile/daemon/
H A Dopd_kernel.h24 void opd_create_vmlinux(char const * name, char const * arg);
26 void opd_create_xen(char const * name, char const * arg);
/external/v8/test/mjsunit/regress/
H A Dregress-1563.js34 function set_pixel(obj, arg) {
35 obj[0] = arg;
/external/valgrind/main/memcheck/tests/
H A Dmalloc3.stderr.exp1 Warning: silly arg (-1) to malloc()
/external/stlport/stlport/stl/config/
H A D_como.h91 inline long double expl(long double arg) { return exp(arg); } argument
92 inline long double logl(long double arg) { return log(arg); } argument
121 inline float logf(float arg) { return log(arg); } argument
122 inline long double logl(long double arg) { return log(arg); } argument
126 inline long double expl(long double arg) { return exp(arg); } argument
164 expl(long double arg) argument
165 logl(long double arg) argument
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/functions/structure/
H A DFirstFunction.java35 VariableValue arg = (VariableValue) args[0];
36 if (arg.getReference() == null) {
37 return literalConstant(false, arg);
40 Data thisNode = arg.getReference().getSymlink();
41 return literalConstant(thisNode.isFirstSibling(), arg);
H A DLastFunction.java35 VariableValue arg = (VariableValue) args[0];
36 if (arg.getReference() == null) {
37 return literalConstant(false, arg);
40 Data thisNode = arg.getReference().getSymlink();
41 return literalConstant(thisNode.isLastSibling(), arg);
H A DSubcountFunction.java35 VariableValue arg = (VariableValue) args[0];
36 if (arg.getReference() == null) {
37 return literalConstant(0, arg);
40 Data thisNode = arg.getReference().getSymlink();
41 return literalConstant(thisNode.getChildCount(), arg);
/external/dbus/tools/
H A Ddbus-uuidgen.c52 get_arg (const char *arg, argument
58 if (strlen(arg) < strlen(option))
61 fn = arg + strlen(option);
99 char *arg = argv[i]; local
101 if (strncmp (arg, "--ensure", strlen("--ensure")) == 0)
103 get_arg (arg, "--ensure", &filename);
106 else if (strncmp (arg, "--get", strlen("--get")) == 0)
108 get_arg (arg, "--get", &filename);
111 else if (strcmp (arg, "--help") == 0)
113 else if (strcmp (arg, "
[all...]
H A Ddbus-send.c193 type_from_name (const char *arg) argument
196 if (!strcmp (arg, "string"))
198 else if (!strcmp (arg, "int16"))
200 else if (!strcmp (arg, "uint16"))
202 else if (!strcmp (arg, "int32"))
204 else if (!strcmp (arg, "uint32"))
206 else if (!strcmp (arg, "int64"))
208 else if (!strcmp (arg, "uint64"))
210 else if (!strcmp (arg, "double"))
212 else if (!strcmp (arg, "byt
257 char *arg = argv[i]; local
410 char *arg; local
[all...]
/external/qemu/
H A Dsoftmmu-semi.h25 #define get_user_u32(arg, p) ({ arg = softmmu_tget32(env, p) ; 0; })
26 #define get_user_u8(arg, p) ({ arg = softmmu_tget8(env, p) ; 0; })
27 #define get_user_ual(arg, p) get_user_u32(arg, p)
34 #define put_user_u32(arg, p) ({ softmmu_tput32(env, p, arg) ; 0; })
35 #define put_user_ual(arg, p) put_user_u32(arg,
[all...]
/external/iptables/extensions/
H A Dlibxt_state.c49 state_parse_states(const char *arg, struct xt_state_info *sinfo) argument
53 while ((comma = strchr(arg, ',')) != NULL) {
54 if (comma == arg || !state_parse_state(arg, comma-arg, sinfo))
55 xtables_error(PARAMETER_PROBLEM, "Bad state \"%s\"", arg);
56 arg = comma+1;
58 if (!*arg)
62 if (strlen(arg) == 0 || !state_parse_state(arg, strle
[all...]
/external/strace/
H A Dproc.c90 proc_ioctl(tcp, code, arg)
92 int code, arg;
105 if (arg == 0)
108 tprintf(", %#x", arg);
109 else if (umove(tcp, arg, &status) < 0)
138 if (arg == 0)
140 else if (umove(tcp, arg, &run) < 0)
151 if (umove(tcp, arg, &val) < 0)
163 if (umove(tcp, arg, &val) < 0)
175 /* doesn't take an arg */
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Expressions/
H A D11.6.1-1.js133 var arg;
139 arg = arguments[i];
140 if (typeof arg === 'string')
141 arg = quoteThis(arg);
144 sEval += arg + ' + ';
146 sEval += arg;

Completed in 590 milliseconds

1234567891011>>