HomeSort by: relevance | last modified time | path
    Searched defs:word_size (Results 1 - 24 of 24) sorted by relevancy

  /src/crypto/external/cpl/trousers/dist/src/tspi/daa/big_integer/
bi_gmp.c 41 int word_size = 1; // 1 byte per word local
42 int numb = 8 * word_size - 0;
45 return count * word_size;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
jit-reader.c 149 const int word_size = sizeof (uintptr_t); local
174 if (cbs->target_read (this_sp, &prev_ip, word_size) == GDB_FAIL)
176 prev_sp = this_sp + word_size;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
jit-reader.c 137 const int word_size = sizeof (uintptr_t); local
162 if (cbs->target_read (this_sp, &prev_ip, word_size) == GDB_FAIL)
164 prev_sp = this_sp + word_size;
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/
random.h 494 * @var word_size The number of bits in each element of the state vector.
518 static const int word_size = __w; member in class:mersenne_twister
864 static const int word_size = __w; member in class:subtract_with_carry_01
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr1/
random.h 531 * @var word_size The number of bits in each element of the state vector.
555 static const int word_size = __w; member in class:mersenne_twister
901 static const int word_size = __w; member in class:subtract_with_carry_01
  /src/external/gpl3/gdb/dist/gdb/
s390-linux-tdep.c 394 int word_size = gdbarch_ptr_bit (gdbarch) / 8; local
410 next_cfa = this_sp + 16*word_size + 32;
418 sigreg_ptr = next_cfa + 8 + 128 + align_up (5*word_size, 8);
430 word_size, byte_order);
447 sigreg_ptr += word_size;
449 sigreg_ptr += word_size;
455 sigreg_ptr += word_size;
488 word_size, byte_order);
491 info->frame_base = prev_sp + 16*word_size + 32;
z80-tdep.c 898 int word_size; local
927 word_size = gdbarch_long_bit (gdbarch) / TARGET_CHAR_BIT;
939 cache_novly_regions * 3, word_size, byte_order);
hppa-tdep.c 1859 int word_size = gdbarch_ptr_bit (gdbarch) / 8;
2154 cache->base = read_memory_integer (this_sp, word_size, byte_order);
1856 int word_size = gdbarch_ptr_bit (gdbarch) \/ 8; local
symfile.c 3469 int word_size;
3494 word_size = gdbarch_long_bit (gdbarch) / TARGET_CHAR_BIT;
3504 cache_novlys * 4, word_size, byte_order);
3523 int word_size = gdbarch_long_bit (gdbarch) / TARGET_CHAR_BIT;
3530 read_target_long_array (cache_ovly_table_base + i * word_size,
3532 4, word_size, byte_order);
3462 int word_size; local
3516 int word_size = gdbarch_long_bit (gdbarch) \/ TARGET_CHAR_BIT; local
  /src/external/gpl3/gdb.old/dist/gdb/
s390-linux-tdep.c 394 int word_size = gdbarch_ptr_bit (gdbarch) / 8; local
410 next_cfa = this_sp + 16*word_size + 32;
418 sigreg_ptr = next_cfa + 8 + 128 + align_up (5*word_size, 8);
430 word_size, byte_order);
447 sigreg_ptr += word_size;
449 sigreg_ptr += word_size;
455 sigreg_ptr += word_size;
488 word_size, byte_order);
491 info->frame_base = prev_sp + 16*word_size + 32;
z80-tdep.c 900 int word_size; local
927 word_size = gdbarch_long_bit (gdbarch) / TARGET_CHAR_BIT;
939 cache_novly_regions * 3, word_size, byte_order);
hppa-tdep.c 1860 int word_size = gdbarch_ptr_bit (gdbarch) / 8;
2155 cache->base = read_memory_integer (this_sp, word_size, byte_order);
1857 int word_size = gdbarch_ptr_bit (gdbarch) \/ 8; local
symfile.c 3460 int word_size;
3483 word_size = gdbarch_long_bit (gdbarch) / TARGET_CHAR_BIT;
3493 cache_novlys * 4, word_size, byte_order);
3512 int word_size = gdbarch_long_bit (gdbarch) / TARGET_CHAR_BIT;
3519 read_target_long_array (cache_ovly_table_base + i * word_size,
3521 4, word_size, byte_order);
3453 int word_size; local
3505 int word_size = gdbarch_long_bit (gdbarch) \/ TARGET_CHAR_BIT; local
  /src/usr.bin/kdump/
kdump.c 89 static int word_size = 0; variable
255 word_size = 1;
258 word_size = strtoul(optarg, &cp, 0);
259 if (*cp != 0 || word_size & (word_size - 1) ||
260 word_size > 16 || word_size <= 0)
356 hexdump_buf(m, ktrlen, word_size ? word_size : 1);
1383 if (word_size) {
    [all...]
  /src/sys/dev/pci/igc/
igc_hw.h 325 uint16_t word_size; member in struct:igc_nvm_info
  /src/external/gpl3/gdb/dist/gdb/mi/
mi-main.c 1240 long word_size; local
1286 word_size = atol (argv[2]);
1287 switch (word_size)
1326 total_bytes = word_size * nr_rows * nr_cols;
1340 uiout->field_core_addr ("next-row", gdbarch, addr + word_size * nr_cols);
1341 uiout->field_core_addr ("prev-row", gdbarch, addr - word_size * nr_cols);
1355 row++, row_byte += nr_cols * word_size)
1370 col++, col_byte += word_size)
1372 if (col_byte + word_size > nr_bytes)
1392 byte < row_byte + word_size * nr_cols; byte++
1497 long word_size; local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/mi/
mi-main.c 1243 long word_size; local
1289 word_size = atol (argv[2]);
1290 switch (word_size)
1329 total_bytes = word_size * nr_rows * nr_cols;
1343 uiout->field_core_addr ("next-row", gdbarch, addr + word_size * nr_cols);
1344 uiout->field_core_addr ("prev-row", gdbarch, addr - word_size * nr_cols);
1358 row++, row_byte += nr_cols * word_size)
1373 col++, col_byte += word_size)
1375 if (col_byte + word_size > nr_bytes)
1395 byte < row_byte + word_size * nr_cols; byte++
1500 long word_size; local
    [all...]
  /src/external/gpl3/binutils/dist/include/opcode/
cgen.h 855 int word_size;
856 #define CGEN_IFLD_WORD_SIZE(f) ((f)->word_size)
842 int word_size; member in struct:cgen_ifld
  /src/external/gpl3/binutils.old/dist/include/opcode/
cgen.h 855 int word_size;
856 #define CGEN_IFLD_WORD_SIZE(f) ((f)->word_size)
842 int word_size; member in struct:cgen_ifld
  /src/external/gpl3/gdb/dist/include/opcode/
cgen.h 855 int word_size;
856 #define CGEN_IFLD_WORD_SIZE(f) ((f)->word_size)
842 int word_size; member in struct:cgen_ifld
  /src/external/gpl3/gdb.old/dist/include/opcode/
cgen.h 855 int word_size;
856 #define CGEN_IFLD_WORD_SIZE(f) ((f)->word_size)
842 int word_size; member in struct:cgen_ifld
  /src/external/gpl3/gcc.old/dist/gcc/config/tilegx/
tilegx.cc 256 int word_size = (byte_size + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
269 && *cum + word_size > TILEGX_NUM_ARG_REGS)
272 *cum += word_size;
254 int word_size = (byte_size + UNITS_PER_WORD - 1) \/ UNITS_PER_WORD; local
  /src/external/gpl3/gcc.old/dist/gcc/config/tilepro/
tilepro.cc 207 int word_size = (byte_size + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
220 && *cum + word_size > TILEPRO_NUM_ARG_REGS)
223 *cum += word_size;
205 int word_size = (byte_size + UNITS_PER_WORD - 1) \/ UNITS_PER_WORD; local
  /src/sys/dev/pci/ixgbe/
ixgbe_type.h 4177 u16 word_size; member in struct:ixgbe_eeprom_info

Completed in 75 milliseconds