Searched refs:opstring (Results 1 – 3 of 3) sorted by relevance
/external/javassist/src/main/javassist/bytecode/ |
D | InstructionPrinter.java | 79 String opstring = opcodes[opcode]; in instructionString() local 82 return opstring + " " + iter.byteAt(pos + 1); in instructionString() 84 return opstring + " " + iter.s16bitAt(pos + 1); in instructionString() 86 return opstring + " " + ldc(pool, iter.byteAt(pos + 1)); in instructionString() 89 return opstring + " " + ldc(pool, iter.u16bitAt(pos + 1)); in instructionString() 100 return opstring + " " + iter.byteAt(pos + 1); in instructionString() 117 return opstring + " " + (iter.s16bitAt(pos + 1) + pos); in instructionString() 119 return opstring + " " + iter.byteAt(pos + 1) + ", " + iter.signedByteAt(pos + 2); in instructionString() 122 return opstring + " " + (iter.s16bitAt(pos + 1) + pos); in instructionString() 124 return opstring + " " + iter.byteAt(pos + 1); in instructionString() [all …]
|
/external/arm-trusted-firmware/tools/fiptool/ |
D | win_posix.c | 72 const char *const opstring, in getopt_1char() argument 75 size_t nlen = (opstring == 0) ? 0 : strlen(opstring); in getopt_1char() 79 if (optchar == opstring[loptn]) { in getopt_1char() 80 if (opstring[loptn + 1] == ':') { in getopt_1char() 90 if (opstring[loptn + 2] == ':') { in getopt_1char() 97 return ((opstring[0] == ':') in getopt_1char() 117 char *opstring) in getopt() argument 121 size_t nlen = strlen(opstring); in getopt() 129 result = getopt_1char(argc, argv, opstring, arg[1]); in getopt()
|
/external/libcups/scheduler/ |
D | testspeed.c | 29 const char *opstring, int verbose); 56 const char *opstring; /* Operation name */ in main() local 69 opstring = NULL; in main() 94 opstring = argv[i]; in main() 139 return (do_test(server, port, encryption, requests, opstring, verbose)); in main() 141 good_children = do_test(server, port, encryption, requests, opstring, in main() 175 if (opstring) in main() 176 execlp(argv[0], argv[0], options, "0", reqstr, "-o", opstring, in main() 243 const char *opstring, /* I - Operation string */ in do_test() argument 290 if (opstring) in do_test() [all …]
|