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

1 2 34 5 6 7 8 91011>>

  /external/strace/tests-m32/
umovestr.test 8 run_strace -e chdir $args
oldselect.c 40 static uint32_t *args; variable
49 if (!args)
50 args = tail_alloc(sizeof(*args) * 5);
51 args[0] = nfds;
52 args[1] = rs;
53 args[2] = ws;
54 args[3] = es;
55 args[4] = tv;
56 long rc = syscall(TEST_SYSCALL_NR, args);
    [all...]
  /external/strace/tests-mx32/
fflush.test 33 args="-o /dev/full -e trace=none $args"
35 $STRACE $args > "$EXP" 2> "$LOG" || {
36 msg="$STRACE $args failed with code $?"
rt_sigaction.test 8 run_strace -ert_sigaction $args
umovestr.test 8 run_strace -e chdir $args
oldselect.c 40 static uint32_t *args; variable
49 if (!args)
50 args = tail_alloc(sizeof(*args) * 5);
51 args[0] = nfds;
52 args[1] = rs;
53 args[2] = ws;
54 args[3] = es;
55 args[4] = tv;
56 long rc = syscall(TEST_SYSCALL_NR, args);
    [all...]
  /external/clang/test/CodeGen/
le32-vaarg.c 4 int get_int(va_list *args) {
5 return va_arg(*args, int);
19 void get_struct(va_list *args) {
20 dest = va_arg(*args, struct Foo);
28 void skip_struct(va_list *args) {
29 va_arg(*args, struct Foo);
sparc-vaarg.c 9 int get_int(va_list *args) {
10 return va_arg(*args, int);
23 void get_struct(va_list *args) {
24 dest = va_arg(*args, struct Foo);
33 void get_enum(va_list *args) {
34 enum_dest = va_arg(*args, enum E);
  /external/junit/src/main/java/org/junit/runner/
FilterFactoryParams.java 5 private final String args; field in class:FilterFactoryParams
7 public FilterFactoryParams(Description topLevelDescription, String args) {
8 if (args == null || topLevelDescription == null) {
13 this.args = args;
17 return args;
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/macros/
vararg.s 1 .macro v1 arg1 : req, args : vararg
3 .ifnb \args
4 v1 \args
  /external/squashfs-tools/squashfs-tools/
error.h 34 #define TRACE(s, args...) \
36 progressbar_info("squashfs: "s, ## args);\
39 #define TRACE(s, args...)
42 #define INFO(s, args...) \
45 progressbar_info(s, ## args);\
48 #define ERROR(s, args...) \
50 progressbar_error(s, ## args); \
53 #define ERROR_START(s, args...) \
56 fprintf(stderr, s, ## args); \
59 #define ERROR_EXIT(s, args...)
    [all...]
  /external/libffi/
msvcc.sh 46 args="-nologo -W3"
60 #args="$args -EHac"
77 args="$args -Od"
87 args="$args"
96 args="$args -O2"
99 args="$args $1
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
ext-blocks.cpp 4 template<typename ...Args>
5 int f0(Args ...args) {
7 return sizeof...(Args);
9 return sizeof...(args);
13 template<typename ...Args>
14 int f1(Args ...args) {
16 return f0(args...);
23 template<typename ...Args>
    [all...]
  /external/strace/tests/
oldselect.c 40 static uint32_t *args; variable
49 if (!args)
50 args = tail_alloc(sizeof(*args) * 5);
51 args[0] = nfds;
52 args[1] = rs;
53 args[2] = ws;
54 args[3] = es;
55 args[4] = tv;
56 long rc = syscall(TEST_SYSCALL_NR, args);
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/
error_reporter.cc 24 va_list args; local
25 va_start(args, format);
26 int code = Report(format, args);
27 va_end(args);
34 va_list args; local
35 va_start(args, format);
36 int code = Report(format, args);
37 va_end(args);
41 int StderrReporter::Report(const char* format, va_list args) {
42 const int result = vfprintf(stderr, format, args);
    [all...]
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/include/
viddec_debug.h 11 // #define DEB(format, args...)
13 #define DEB_FNAME(format, args...) OS_PRINT("%s: %s[%d]:: " format, __FILE__, __FUNCTION__ , __LINE__ , ## args )
14 #define CDEB(a, format, args...) if(a != 0) {DEB(format, ##args);}
16 #define DEB(format, args...)
18 #define CDEB(a, format, args...)
19 #define DEB_FNAME(format, args...)
24 #define DEB(format, args...)
26 #define CDEB(a, format, args...
    [all...]
  /external/skia/src/gpu/gl/
GrGLContext.cpp 28 ConstructorArgs args; local
29 args.fGLVersion = GrGLGetVersionFromString(ver);
30 if (GR_GL_INVALID_VER == args.fGLVersion) {
34 if (!GrGLGetGLSLGeneration(interface.get(), &args.fGLSLGeneration)) {
38 args.fVendor = GrGLGetVendor(interface.get());
40 args.fRenderer = GrGLGetRendererFromString(renderer);
42 GrGLGetANGLEInfoFromString(renderer, &args.fANGLEBackend, &args.fANGLEVendor,
43 &args.fANGLERenderer);
52 if (kAdreno3xx_GrGLRenderer == args.fRenderer)
    [all...]
  /external/skqp/src/gpu/gl/
GrGLContext.cpp 28 ConstructorArgs args; local
29 args.fGLVersion = GrGLGetVersionFromString(ver);
30 if (GR_GL_INVALID_VER == args.fGLVersion) {
34 if (!GrGLGetGLSLGeneration(interface.get(), &args.fGLSLGeneration)) {
38 args.fVendor = GrGLGetVendor(interface.get());
40 args.fRenderer = GrGLGetRendererFromString(renderer);
42 GrGLGetANGLEInfoFromString(renderer, &args.fANGLEBackend, &args.fANGLEVendor,
43 &args.fANGLERenderer);
52 if (kAdreno3xx_GrGLRenderer == args.fRenderer)
    [all...]
  /external/skia/src/ports/
SkDebug_win.cpp 21 va_list args; local
23 va_start(args, format);
24 vfprintf(stderr, format, args);
25 va_end(args);
28 va_start(args, format);
29 vsnprintf(buffer, kBufferSize, format, args);
30 va_end(args);
  /external/skqp/src/ports/
SkDebug_win.cpp 21 va_list args; local
23 va_start(args, format);
24 vfprintf(stderr, format, args);
25 va_end(args);
28 va_start(args, format);
29 vsnprintf(buffer, kBufferSize, format, args);
30 va_end(args);
  /device/google/marlin/camera/QCamera2/stack/mm-camera-interface/inc/
mm_camera_dbg.h 66 #define CLOGx(module, level, fmt, args...) \
69 mm_camera_debug_log(module, level, __func__, __LINE__, fmt, ##args); \
74 #define CLOGI(module, fmt, args...) \
75 CLOGx(module, CAM_GLBL_DBG_INFO, fmt, ##args)
77 #define CLOGD(module, fmt, args...) \
78 CLOGx(module, CAM_GLBL_DBG_DEBUG, fmt, ##args)
80 #define CLOGL(module, fmt, args...) \
81 CLOGx(module, CAM_GLBL_DBG_LOW, fmt, ##args)
83 #define CLOGW(module, fmt, args...) \
84 CLOGx(module, CAM_GLBL_DBG_WARN, fmt, ##args)
    [all...]
  /hardware/qcom/camera/msm8998/QCamera2/stack/mm-camera-interface/inc/
mm_camera_dbg.h 66 #define CLOGx(module, level, fmt, args...) \
69 mm_camera_debug_log(module, level, __func__, __LINE__, fmt, ##args); \
74 #define CLOGI(module, fmt, args...) \
75 CLOGx(module, CAM_GLBL_DBG_INFO, fmt, ##args)
77 #define CLOGD(module, fmt, args...) \
78 CLOGx(module, CAM_GLBL_DBG_DEBUG, fmt, ##args)
80 #define CLOGL(module, fmt, args...) \
81 CLOGx(module, CAM_GLBL_DBG_LOW, fmt, ##args)
83 #define CLOGW(module, fmt, args...) \
84 CLOGx(module, CAM_GLBL_DBG_WARN, fmt, ##args)
    [all...]
  /frameworks/support/compat/src/main/java/androidx/core/os/
LocaleHelper.java 36 String[] args = str.split("-", -1); local
37 if (args.length > 2) {
38 return new Locale(args[0], args[1], args[2]);
39 } else if (args.length > 1) {
40 return new Locale(args[0], args[1]);
41 } else if (args.length == 1) {
42 return new Locale(args[0])
45 String[] args = str.split("_", -1); local
    [all...]
  /external/python/cpython2/Lib/bsddb/
dbobj.py 39 def __init__(self, *args, **kwargs):
40 self._cobj = db.DBEnv(*args, **kwargs)
42 def close(self, *args, **kwargs):
43 return self._cobj.close(*args, **kwargs)
44 def open(self, *args, **kwargs):
45 return self._cobj.open(*args, **kwargs)
46 def remove(self, *args, **kwargs):
47 return self._cobj.remove(*args, **kwargs)
48 def set_shm_key(self, *args, **kwargs):
49 return self._cobj.set_shm_key(*args, **kwargs
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/bsddb/
dbobj.py 39 def __init__(self, *args, **kwargs):
40 self._cobj = db.DBEnv(*args, **kwargs)
42 def close(self, *args, **kwargs):
43 return self._cobj.close(*args, **kwargs)
44 def open(self, *args, **kwargs):
45 return self._cobj.open(*args, **kwargs)
46 def remove(self, *args, **kwargs):
47 return self._cobj.remove(*args, **kwargs)
48 def set_shm_key(self, *args, **kwargs):
49 return self._cobj.set_shm_key(*args, **kwargs
    [all...]

Completed in 964 milliseconds

1 2 34 5 6 7 8 91011>>