HomeSort by relevance Sort by last modified time
    Searched defs:args (Results 1251 - 1275 of 5214) sorted by null

<<51525354555657585960>>

  /external/strace/tests/
keyctl.c 144 kernel_ulong_t args[4] = { local
171 args[cnt] = va_arg(ap, uint64_t);
173 args[cnt] = va_arg(ap, uint32_t);
175 args[cnt] = (uintptr_t) va_arg(ap, void *);
181 long rc = syscall(__NR_keyctl, cmd, args[0], args[1], args[2], args[3]);
186 print_arg(args[i], arg_str[i], arg_fmt[i], arg_sz[i], rc);
  /external/strace/tests-m32/
keyctl.c 144 kernel_ulong_t args[4] = { local
171 args[cnt] = va_arg(ap, uint64_t);
173 args[cnt] = va_arg(ap, uint32_t);
175 args[cnt] = (uintptr_t) va_arg(ap, void *);
181 long rc = syscall(__NR_keyctl, cmd, args[0], args[1], args[2], args[3]);
186 print_arg(args[i], arg_str[i], arg_fmt[i], arg_sz[i], rc);
  /external/strace/tests-mx32/
keyctl.c 144 kernel_ulong_t args[4] = { local
171 args[cnt] = va_arg(ap, uint64_t);
173 args[cnt] = va_arg(ap, uint32_t);
175 args[cnt] = (uintptr_t) va_arg(ap, void *);
181 long rc = syscall(__NR_keyctl, cmd, args[0], args[1], args[2], args[3]);
186 print_arg(args[i], arg_str[i], arg_fmt[i], arg_sz[i], rc);
  /external/svox/pico/lib/
picopal.c 167 va_list args; local
169 va_start(args, (char *)fmt);
170 i = (picopal_int16)vsprintf((char *) dst, (const char *)fmt, args);
171 va_end(args);
176 picopal_objsize_t picopal_vslprintf(picopal_char * dst, picopal_objsize_t siz, const picopal_char *fmt, va_list args) {
194 ival = va_arg(args,int);
200 cval = va_arg(args,int);
206 b = (picopal_char *) va_arg(args, char*);
237 picopal_objsize_t picopal_slprintf(picopal_char * dst, picopal_objsize_t siz, const picopal_char *fmt, /*args*/ ...) {
239 va_list args; local
    [all...]
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter6/
codegen.ml 52 | Ast.Call (callee, args) ->
62 if Array.length params == Array.length args then () else
64 let args = Array.map codegen_expr args in var
65 build_call callee args "calltmp" builder
190 | Ast.Prototype (name, args) | Ast.BinOpPrototype (name, args, _) ->
192 let doubles = Array.make (Array.length args) double_type in
207 raise (Error "redefinition of function with different # args");
213 let n = args.(i) i
    [all...]
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter7/
codegen.ml 82 | Ast.Call (callee, args) ->
92 if Array.length params == Array.length args then () else
94 let args = Array.map codegen_expr args in var
95 build_call callee args "calltmp" builder
288 | Ast.Prototype (name, args) | Ast.BinOpPrototype (name, args, _) ->
290 let doubles = Array.make (Array.length args) double_type in
305 raise (Error "redefinition of function with different # args");
311 let n = args.(i) i
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
PathProfileInfo.cpp 344 char* args = new char[savedArgsLength+1]; local
345 if( fread(args, 1, savedArgsLength, _file) != savedArgsLength )
348 args[savedArgsLength] = '\0';
349 argList = std::string(args);
350 delete [] args; // cleanup dynamic string
  /external/swiftshader/third_party/LLVM/tools/llvm-ld/
llvm-ld.cpp 144 static void PrintCommand(const std::vector<const char*> &args) {
145 std::vector<const char*>::const_iterator I = args.begin(), E = args.end();
267 std::vector<const char*> args; local
268 args.push_back(llc.c_str());
271 args.push_back("-x86-asm-syntax=att");
272 args.push_back("-o");
273 args.push_back(OutputFilename.c_str());
274 args.push_back(InputFilename.c_str());
275 args.push_back(0);
291 std::vector<const char*> args; local
353 std::vector<std::string> args; local
630 const char* args[4]; local
    [all...]
  /external/syslinux/gpxe/src/core/
gdbstub.c 165 static int gdbstub_get_packet_args ( struct gdbstub *stub, unsigned long *args, int nargs, int *stop_idx ) {
175 args [ argc++ ] = val;
185 args [ argc++ ] = val;
214 unsigned long args [ 2 ]; local
215 if ( !gdbstub_get_packet_args ( stub, args, sizeof args / sizeof args [ 0 ], NULL ) ) {
219 args [ 1 ] = ( args [ 1 ] < SIZEOF_PAYLOAD / 2 ) ? args [ 1 ] : SIZEOF_PAYLOAD / 2
226 unsigned long args [ 2 ]; local
249 unsigned long args [ 3 ]; local
    [all...]
vsprintf.c 162 * @v args Arguments corresponding to the format string
165 size_t vcprintf ( struct printf_context *ctx, const char *fmt, va_list args ) {
222 cputchar ( ctx, va_arg ( args, unsigned int ) );
224 ptr = va_arg ( args, char * );
230 ptrval = ( intptr_t ) va_arg ( args, void * );
238 hex = va_arg ( args, unsigned long long );
240 hex = va_arg ( args, unsigned long );
242 hex = va_arg ( args, unsigned int );
249 decimal = va_arg ( args, signed long );
251 decimal = va_arg ( args, signed int )
334 va_list args; local
372 va_list args; local
416 va_list args; local
    [all...]
  /external/syslinux/gpxe/src/hci/tui/
settings_ui.c 96 static void vmsg ( unsigned int row, const char *fmt, va_list args ) __nonnull;
98 static void valert ( const char *fmt, va_list args ) __nonnull;
235 * @v args printf() argument list
237 static void vmsg ( unsigned int row, const char *fmt, va_list args ) {
241 len = vsnprintf ( buf, sizeof ( buf ), fmt, args );
253 va_list args; local
255 va_start ( args, fmt );
256 vmsg ( row, fmt, args );
257 va_end ( args );
274 * @v args printf() argument lis
292 va_list args; local
    [all...]
  /external/syslinux/memdisk/
conio.c 177 int vsprintf(char *buf, const char *fmt, va_list args)
227 field_width = va_arg(args, int);
243 precision = va_arg(args, int);
264 *str++ = (unsigned char)va_arg(args, int);
270 s = va_arg(args, char *);
288 (unsigned long)va_arg(args, void *), 16,
294 long *ip = va_arg(args, long *);
297 int *ip = va_arg(args, int *);
332 num = va_arg(args, unsigned long);
334 num = (unsigned short)va_arg(args, int)
372 va_list args; local
    [all...]
  /external/toybox/toys/pending/
brctl.c 47 unsigned long args[4] = { BRCTL_GET_PORT_LIST, local
51 args[1] = (unsigned long)ifindices;
53 ifr.ifr_data = (char *)args;
61 unsigned long args[4] = { BRCTL_GET_BRIDGE_INFO, local
66 ifr.ifr_data = (char *)args;
78 unsigned long args[4] = { BRCTL_GET_BRIDGES, local
82 num = ioctl(TT.sockfd, SIOCGIFBR, args); //ret is num of bridges found
116 unsigned long args[4] = {BRCTL_ADD_BRIDGE, (unsigned long) br, 0, 0}; local
122 xioctl(TT.sockfd, SIOCSIFBR, args);
129 unsigned long args[4] = {BRCTL_DEL_BRIDGE, (unsigned long) br, 0, 0} local
143 unsigned long args[4] = {BRCTL_ADD_IF, 0, 0, 0}; local
161 unsigned long args[4] = {BRCTL_DEL_IF, 0, 0, 0}; local
195 unsigned long args[4] = {cmd, val, 0, 0}; local
262 unsigned long args[4] = {cmd, 0, val, 0}; local
    [all...]
fsck.c 191 char **args; local
202 args = xzalloc((toys.optc + 2 + 1 + 1) * sizeof(char*)); //+1, for NULL, +1 if -C
203 args[0] = xmprintf("fsck.%s", type);
205 if(toys.optflags & FLAG_C) args[i++] = xmprintf("%s %d","-C", TT.fd_num);
207 if(*toys.optargs[j]) args[i++] = xstrdup(toys.optargs[j]);
210 args[i] = finfo->device;
214 printf("[%s (%d) -- %s]", args[0], TT.nr_run,
216 for (i = 0; args[i]; i++) xprintf(" %s", args[i]);
221 for (j=0;j<i;j++) free(args[i])
    [all...]
  /external/v8/src/
fast-accessor-assembler.cc 196 Node** args = zone()->NewArray<Node*>(param_count + 1 + kJSParameterCount); local
198 args[0] = assembler_->UndefinedConstant(); // callee (there's no JSFunction)
199 args[1] = assembler_->UndefinedConstant(); // call_data (undefined)
200 args[2] = assembler_->Parameter(0); // receiver (same as holder in this case)
201 args[3] = assembler_->ExternalConstant(callback); // API callback function
204 args[4] = FromId(arg);
207 args[5] = context;
210 assembler_->CallStubN(descriptor, kJSParameterCount, target, args);
flag-definitions.h 103 JSArguments args; local
104 args.argc = argc;
105 args.argv = argv;
106 return args;
164 #define DEFINE_ARGS(nam, cmt) FLAG(ARGS, JSArguments, nam, {0 COMMA NULL}, cmt)
171 #define DEFINE_ALIAS_ARGS(alias, nam) FLAG_ALIAS(ARGS, JSArguments, alias, nam)
    [all...]
utils.cc 131 va_list args; local
132 va_start(args, format);
133 int result = VSNPrintF(str, format, args);
134 va_end(args);
139 int VSNPrintF(Vector<char> str, const char* format, va_list args) {
140 return base::OS::VSNPrintF(str.start(), str.length(), format, args);
  /external/v8/src/inspector/
v8-console-message.cc 244 std::unique_ptr<protocol::Array<protocol::Runtime::RemoteObject>> args = local
256 args->addItem(std::move(wrapped));
258 args = nullptr;
267 args = nullptr;
270 args->addItem(std::move(wrapped));
273 return args;
  /external/v8/src/interpreter/
interpreter-intrinsics.cc 225 Node** args = zone()->NewArray<Node*>(param_count + 1); // 1 for context local
227 args[i] = __ LoadRegister(args_reg);
230 args[param_count] = context;
232 return __ CallStubN(callable, args);
  /external/v8/tools/clang/blink_gc_plugin/
process-graph.py 44 # Command line args after parsing.
45 args = None variable
67 if args.verbose:
259 for ignore in args.ignore_classes:
319 log("Reading graph from pickled file: " + args.pickle_graph)
320 dump = pickle.load(open(args.pickle_graph, 'rb'))
325 log("Saving graph to pickle file: " + args.pickle_graph)
327 pickle.dump(dump, open(args.pickle_graph, 'wb'))
331 if not args.ignore_cycles:
333 log("Reading ignored cycles from file: " + args.ignore_cycles
    [all...]
  /external/valgrind/coregrind/m_demangle/
cp-demangle.h 46 int args; member in struct:demangle_operator_info
  /external/valgrind/coregrind/m_syswrap/
syswrap-main.c 122 * First, it rounds up the syscall number and args (which is a
123 platform dependent activity) and puts them in a struct ("args")
132 "args".
135 * The pre-wrapper examines the args and pokes the tool
136 appropriately. It may modify the args; this is why "orig_args"
150 the possibly-modified "args" struct.
193 The post wrapper is passed the adulterated syscall args (struct
194 "args"), and the syscall outcome (viz, Success(N) or Fail(N)).
204 syscall args/results, since these wrappers are designed to work on
597 // macros will mention the pre-shifted args
1669 SyscallArgs args; member in struct:__anon35762
    [all...]
syswrap-x86-linux.c 159 /* get other args to clone */
204 3. create the thread using the same args as the client requested,
800 PRE_REG_READ1(long, "old_select", struct sel_arg_struct *, args);
801 PRE_MEM_READ( "old_select(args)", ARG1, 5*sizeof(UWord) );
1191 UWord* args = (UWord*)ARG1; local
    [all...]
  /external/vboot_reference/utility/
tpmc.c 36 char** args; variable
115 if (HexStringToUint32(args[2], &index) != 0 ||
116 HexStringToUint32(args[3], &size) != 0 ||
117 HexStringToUint32(args[4], &perm) != 0) {
134 if (HexStringToUint32(args[2], &index) != 0) {
144 byteargs = args + 3;
176 if (HexStringToUint32(args[2], &index) != 0) {
199 if (HexStringToUint32(args[2], &index) != 0 ||
200 HexStringToUint32(args[3], &size) != 0) {
224 if (HexStringToUint32(args[2], &index) != 0)
    [all...]
  /external/vogar/src/vogar/
OptionParser.java 124 * public static void main(String[] args) {
126 * List<String> inputFilenames = new OptionParser(options).parse(args);
243 * Parses the command-line arguments 'args', setting the @Option fields of the 'optionSource' provided to the constructor.
246 public List<String> parse(String[] args) {
247 return parseOptions(Arrays.asList(args).iterator());
250 private List<String> parseOptions(Iterator<String> args) {
253 // Scan 'args'.
254 while (args.hasNext()) {
255 final String arg = args.next();
261 parseLongOption(arg, args);
    [all...]

Completed in 1341 milliseconds

<<51525354555657585960>>