HomeSort by relevance Sort by last modified time
    Searched defs:hex_value (Results 1 - 5 of 5) sorted by null

  /toolchain/binutils/binutils-2.25/opcodes/
spu-dis.c 97 int hex_value; local
138 hex_value = 0;
191 hex_value = DECODE_INSN_I7 (insn);
192 (*info->fprintf_func) (info->stream, "%d", hex_value);
204 hex_value = DECODE_INSN_I10 (insn);
205 (*info->fprintf_func) (info->stream, "%d", hex_value);
208 hex_value = DECODE_INSN_I10 (insn) * 16;
209 (*info->fprintf_func) (info->stream, "%d", hex_value);
212 hex_value = DECODE_INSN_I16 (insn);
213 (*info->fprintf_func) (info->stream, "%d", hex_value);
258 (*info->fprintf_func) (info->stream, "\\t# %x", hex_value); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
libiberty.h 377 #define hex_p(c) (hex_value (c) != _hex_bad)
380 #define hex_value(c) ((unsigned int) _hex_value[(unsigned char) (c)]) macro
  /toolchain/binutils/binutils-2.25/include/
libiberty.h 380 #define hex_p(c) (hex_value (c) != _hex_bad)
383 #define hex_value(c) ((unsigned int) _hex_value[(unsigned char) (c)]) macro
  /system/keymaster/
android_keymaster_test_utils.cpp 119 static char hex_value[256] = { variable
138 b[i] = (hex_value[a[i * 2] & 0xFF] << 4) + (hex_value[a[i * 2 + 1] & 0xFF]);
    [all...]
  /hardware/interfaces/keymaster/3.0/vts/functional/
keymaster_hidl_hal_test.cpp 210 constexpr char hex_value[256] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // member in namespace:android::hardware::keymaster::V3_0::test::__anon42861
232 b[i] = (hex_value[a[i * 2] & 0xFF] << 4) + (hex_value[a[i * 2 + 1] & 0xFF]);
    [all...]

Completed in 244 milliseconds