HomeSort by relevance Sort by last modified time
    Searched refs:print_string_hex (Results 1 - 25 of 30) sorted by null

1 2

  /external/capstone/cstool/
cstool_x86.c 9 void print_string_hex(char *comment, unsigned char *str, size_t len);
22 print_string_hex("\tPrefix:", x86->prefix, 4);
24 print_string_hex("\tOpcode:", x86->opcode, 4);
cstool_mips.c 9 void print_string_hex(char *comment, unsigned char *str, size_t len);
cstool_ppc.c 8 void print_string_hex(char *comment, unsigned char *str, size_t len);
cstool_sparc.c 8 void print_string_hex(char *comment, unsigned char *str, size_t len);
cstool_systemz.c 8 void print_string_hex(char *comment, unsigned char *str, size_t len);
cstool_xcore.c 7 void print_string_hex(char *comment, unsigned char *str, size_t len);
cstool_arm.c 6 void print_string_hex(char *comment, unsigned char *str, size_t len);
cstool_arm64.c 9 void print_string_hex(char *comment, unsigned char *str, size_t len);
  /external/capstone/tests/
test_x86.c 22 static void print_string_hex(char *comment, unsigned char *str, size_t len) function
45 print_string_hex("\tPrefix:", x86->prefix, 4);
47 print_string_hex("\tOpcode:", x86->opcode, 4);
222 print_string_hex("Code:", platforms[i].code, platforms[i].size);
236 print_string_hex("Code:", platforms[i].code, platforms[i].size);
test_arm64.c 20 static void print_string_hex(char *comment, unsigned char *str, size_t len) function
215 print_string_hex("Code: ", platforms[i].code, platforms[i].size);
229 print_string_hex("Code: ", platforms[i].code, platforms[i].size);
test_mips.c 20 static void print_string_hex(char *comment, unsigned char *str, size_t len) function
137 print_string_hex("Code:", platforms[i].code, platforms[i].size);
151 print_string_hex("Code:", platforms[i].code, platforms[i].size);
test_ppc.c 19 static void print_string_hex(char *comment, unsigned char *str, size_t len) function
148 print_string_hex("Code:", platforms[i].code, platforms[i].size);
162 print_string_hex("Code:", platforms[i].code, platforms[i].size);
test_skipdata.c 22 static void print_string_hex(unsigned char *str, size_t len) function
120 print_string_hex(platforms[i].code, platforms[i].size);
136 print_string_hex(platforms[i].code, platforms[i].size);
test_sparc.c 19 static void print_string_hex(char *comment, unsigned char *str, size_t len) function
122 print_string_hex("Code:", platforms[i].code, platforms[i].size);
136 print_string_hex("Code:", platforms[i].code, platforms[i].size);
test_systemz.c 19 static void print_string_hex(char *comment, unsigned char *str, size_t len) function
115 print_string_hex("Code:", platforms[i].code, platforms[i].size);
129 print_string_hex("Code:", platforms[i].code, platforms[i].size);
test_xcore.c 19 static void print_string_hex(char *comment, unsigned char *str, size_t len) function
110 print_string_hex("Code:", platforms[i].code, platforms[i].size);
124 print_string_hex("Code:", platforms[i].code, platforms[i].size);
test_iter.c 21 static void print_string_hex(unsigned char *str, size_t len) function
207 print_string_hex(platforms[i].code, platforms[i].size);
test_arm.c 21 static void print_string_hex(char *comment, unsigned char *str, size_t len) function
273 print_string_hex("Code:", platforms[i].code, platforms[i].size);
287 print_string_hex("Code:", platforms[i].code, platforms[i].size);
test_basic.c 20 static void print_string_hex(unsigned char *str, size_t len) function
244 print_string_hex(platforms[i].code, platforms[i].size);
260 print_string_hex(platforms[i].code, platforms[i].size);
test_detail.c 20 static void print_string_hex(unsigned char *str, size_t len) function
239 print_string_hex(platforms[i].code, platforms[i].size);
286 print_string_hex(platforms[i].code, platforms[i].size);
  /external/capstone/bindings/python/
test_x86.py 23 def print_string_hex(comment, str): function in function:print_insn_detail
37 print_string_hex("\tPrefix:", insn.prefix)
40 print_string_hex("\tOpcode:", insn.opcode)
  /external/capstone/bindings/ocaml/
test_x86.ml 10 let print_string_hex comment str = var
53 print_string_hex "\tPrefix: " x86.prefix;
56 print_string_hex "\tOpcode: " x86.opcode;
test_mips.ml 9 let print_string_hex comment str = var
test_xcore.ml 9 let print_string_hex comment str = var
test_arm64.ml 10 let print_string_hex comment str = var

Completed in 139 milliseconds

1 2