HomeSort by relevance Sort by last modified time
    Searched refs:args (Results 26 - 50 of 19863) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/python/cpython3/Modules/_ctypes/libffi/testsuite/libffi.call/
closure_fn5.c 13 closure_test_fn5(ffi_cif* cif __UNUSED__, void* resp, void** args,
17 (int)*(unsigned long long *)args[0] + (int)*(unsigned long long *)args[1] +
18 (int)*(unsigned long long *)args[2] + (int)*(unsigned long long *)args[3] +
19 (int)*(unsigned long long *)args[4] + (int)*(unsigned long long *)args[5] +
20 (int)*(unsigned long long *)args[6] + (int)*(unsigned long long *)args[7] +
21 (int)*(unsigned long long *)args[8] + (int)*(unsigned long long *)args[9]
    [all...]
closure_fn6.c 12 closure_test_fn0(ffi_cif* cif __UNUSED__, void* resp, void** args,
16 (int)*(unsigned long long *)args[0] +
17 (int)(*(unsigned long long *)args[1]) +
18 (int)(*(unsigned long long *)args[2]) +
19 (int)*(unsigned long long *)args[3] +
20 (int)(*(int *)args[4]) + (int)(*(double *)args[5]) +
21 (int)*(double *)args[6] + (int)(*(float *)args[7]) +
22 (int)(*(double *)args[8]) + (int)*(double *)args[9]
    [all...]
unwindtest.cc 13 void** args __UNUSED__, void* userdata __UNUSED__)
21 void** args, void* userdata __UNUSED__)
24 (int)*(float *)args[0] +(int)(*(float *)args[1]) +
25 (int)(*(float *)args[2]) + (int)*(float *)args[3] +
26 (int)(*(signed short *)args[4]) + (int)(*(float *)args[5]) +
27 (int)*(float *)args[6] + (int)(*(int *)args[7])
    [all...]
  /external/ltp/testcases/kernel/io/disktest/
parse.c 47 int fill_cld_args(int argc, char **argv, child_args_t * args)
62 pMsg(WARN, args, "Missing argument for perameter.\n");
68 pMsg(WARN, args,
73 pMsg(WARN, args,
79 pMsg(ERR, args,
87 args->flags |= CLD_FLG_DUMP;
91 pMsg(WARN, args,
96 pMsg(WARN, args,
100 args->seed = (unsigned int)strtol(optarg, NULL, 0);
104 pMsg(WARN, args,
    [all...]
  /dalvik/dx/tests/143-interface-methods/
InvokeStatic.java 18 public static void main(String[] args) {
19 StaticDefinition.printIt(args[0]);
  /external/clang/test/PCH/
__va_list_tag.c 13 int myvprintf(const char *fmt, va_list args) {
14 return myvfprintf(fmt, args);
  /external/minijail/
syscall_wrapper.h 6 int sys_seccomp(unsigned int operation, unsigned int flags, void *args);
  /system/media/camera/docs/
CameraCharacteristicsKeys.mako 17 <%include file="CameraMetadataKeys.mako" args="java_class='CameraCharacteristics', xml_kind='static'" />
CaptureRequestKeys.mako 17 <%include file="CameraMetadataKeys.mako" args="java_class='CaptureRequest', xml_kind='controls'" />
CaptureResultKeys.mako 17 <%include file="CameraMetadataKeys.mako" args="java_class='CaptureResult', xml_kind='dynamic'" />
  /external/valgrind/none/tests/ppc32/
test_gx.c 74 double* args, int nargs,
82 a = args[i];
95 double* args = malloc(nargs * sizeof(double)); local
96 args[0] = 0.0;
97 args[1] = 1.0 / 0.0; // inf
98 args[2] = -args[1]; // -inf
99 args[3] = args[2]/args[2]; // na
    [all...]
test_fx.c 39 double* args, int nargs,
47 a = args[i];
60 double* args = malloc(nargs * sizeof(double)); local
61 args[0] = 0.0;
62 args[1] = 1.0 / 0.0; // inf
63 args[2] = -args[1]; // -inf
64 args[3] = args[2]/args[2]; // na
    [all...]
  /external/webrtc/talk/media/webrtc/
fakewebrtccommon.h 35 #define WEBRTC_STUB(method, args) \
36 int method args override { return 0; }
38 #define WEBRTC_STUB_CONST(method, args) \
39 int method args const override { return 0; }
41 #define WEBRTC_BOOL_STUB(method, args) \
42 bool method args override { return true; }
44 #define WEBRTC_BOOL_STUB_CONST(method, args) \
45 bool method args const override { return true; }
47 #define WEBRTC_VOID_STUB(method, args) \
48 void method args override {
    [all...]
  /external/elfutils/backends/
i386_syscall.c 38 int *sp, int *pc, int *callno, int args[6])
43 args[0] = 3; /* %ebx */
44 args[1] = 1; /* %ecx */
45 args[2] = 2; /* %edx */
46 args[3] = 6; /* %esi */
47 args[4] = 7; /* %edi */
48 args[5] = 5; /* %ebp */
ppc_syscall.c 38 int *sp, int *pc, int *callno, int args[6])
43 args[0] = 3;
44 args[1] = 4;
45 args[2] = 5;
46 args[3] = 6;
47 args[4] = 7;
48 args[5] = 8;
x86_64_syscall.c 38 int *sp, int *pc, int *callno, int args[6])
43 args[0] = 5; /* %rdi */
44 args[1] = 4; /* %rsi */
45 args[2] = 1; /* %rdx */
46 args[3] = 10; /* %r10 */
47 args[4] = 8; /* %r8 */
48 args[5] = 9; /* %r9 */
  /art/test/023-many-interfaces/src/
Main.java 2 static public void main(String[] args) throws Exception {
3 boolean timing = (args.length >= 1) && args[0].equals("--timing");
  /external/autotest/site_utils/
test_that_unittest.py 18 args = test_that.parse_arguments(
19 ['-b', 'some_board', '-i', 'some_image', '--args', 'some_args',
21 self.assertEqual('some_board', args.board)
22 self.assertEqual('some_image', args.build)
23 self.assertEqual('some_args', args.args)
24 self.assertEqual('some_remote', args.remote)
25 self.assertEqual(['test1', 'test2'], args.tests)
28 args, remote_argv = test_that._parse_arguments_internal(
29 ['-b', 'some_board', '-i', 'some_image', '--args', 'some_args'
    [all...]
  /external/libffi/testsuite/libffi.call/
unwindtest.cc 13 void** args __UNUSED__, void* userdata __UNUSED__)
21 void** args, void* userdata __UNUSED__)
24 (int)*(float *)args[0] +(int)(*(float *)args[1]) +
25 (int)(*(float *)args[2]) + (int)*(float *)args[3] +
26 (int)(*(signed short *)args[4]) + (int)(*(float *)args[5]) +
27 (int)*(float *)args[6] + (int)(*(int *)args[7])
    [all...]
closure_loc_fn0.c 16 closure_loc_test_fn0(ffi_cif* cif __UNUSED__, void* resp, void** args,
20 (int)*(unsigned long long *)args[0] + (int)(*(int *)args[1]) +
21 (int)(*(unsigned long long *)args[2]) + (int)*(int *)args[3] +
22 (int)(*(signed short *)args[4]) +
23 (int)(*(unsigned long long *)args[5]) +
24 (int)*(int *)args[6] + (int)(*(int *)args[7]) +
25 (int)(*(double *)args[8]) + (int)*(int *)args[9]
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/testsuite/libffi.call/
unwindtest.cc 13 void** args __UNUSED__, void* userdata __UNUSED__)
21 void** args, void* userdata __UNUSED__)
24 (int)*(float *)args[0] +(int)(*(float *)args[1]) +
25 (int)(*(float *)args[2]) + (int)*(float *)args[3] +
26 (int)(*(signed short *)args[4]) + (int)(*(float *)args[5]) +
27 (int)*(float *)args[6] + (int)(*(int *)args[7])
    [all...]
closure_loc_fn0.c 16 closure_loc_test_fn0(ffi_cif* cif __UNUSED__, void* resp, void** args,
20 (int)*(unsigned long long *)args[0] + (int)(*(int *)args[1]) +
21 (int)(*(unsigned long long *)args[2]) + (int)*(int *)args[3] +
22 (int)(*(signed short *)args[4]) +
23 (int)(*(unsigned long long *)args[5]) +
24 (int)*(int *)args[6] + (int)(*(int *)args[7]) +
25 (int)(*(double *)args[8]) + (int)*(int *)args[9]
    [all...]
  /external/oj-libjdwp/src/share/back/
log_messages.h 29 /* LOG: Must be called like: LOG_category(("anything")) or LOG_category((format,args)) */
43 #define _LOG(flavor,args) \
45 log_message_end args)
49 #define LOG_JVM(args) \
50 (LOG_TEST(JDWP_LOG_JVM) ?_LOG("JVM", args):LOG_NULL)
51 #define LOG_JNI(args) \
52 (LOG_TEST(JDWP_LOG_JNI) ?_LOG("JNI", args):LOG_NULL)
53 #define LOG_JVMTI(args) \
54 (LOG_TEST(JDWP_LOG_JVMTI)?_LOG("JVMTI",args):LOG_NULL)
55 #define LOG_MISC(args) \
    [all...]
  /external/skqp/src/gpu/effects/
GrAtlasedShaderHelpers.h 17 static void append_index_uv_varyings(GrGLSLPrimitiveProcessor::EmitArgs& args,
26 if (args.fShaderCaps->integerSupport()) {
27 args.fVertBuilder->codeAppendf("int2 signedCoords = int2(%s.x, %s.y);",
29 args.fVertBuilder->codeAppend("int texIdx = 2*(signedCoords.x & 0x1) + (signedCoords.y & 0x1);");
30 args.fVertBuilder->codeAppend("float2 unormTexCoords = float2(signedCoords.x/2, signedCoords.y/2);");
32 args.fVertBuilder->codeAppendf("float2 indexTexCoords = float2(%s.x, %s.y);",
34 args.fVertBuilder->codeAppend("float2 unormTexCoords = floor(0.5*indexTexCoords);");
35 args.fVertBuilder->codeAppend("float2 diff = indexTexCoords - 2.0*unormTexCoords;");
36 args.fVertBuilder->codeAppend("float texIdx = 2.0*diff.x + diff.y;");
40 args.fVaryingHandler->addVarying("TextureCoords", uv)
    [all...]
  /system/keymaster/android_keymaster/
logger.cpp 24 int Logger::Log(LogLevel level, const char* fmt, va_list args) {
27 return instance_->log_msg(level, fmt, args);
32 va_list args; local
33 va_start(args, fmt);
34 int result = Log(level, fmt, args);
35 va_end(args);
41 va_list args; local
42 va_start(args, fmt);
43 int result = Log(DEBUG_LVL, fmt, args);
44 va_end(args);
50 va_list args; local
58 va_list args; local
66 va_list args; local
74 va_list args; local
    [all...]

Completed in 394 milliseconds

12 3 4 5 6 7 8 91011>>