Home
last modified time | relevance | path

Searched refs:word_size (Results 1 – 21 of 21) sorted by relevance

/external/elfutils/backends/
Ds390_unwind.c72 unsigned word_size = ebl->class == ELFCLASS64 ? 8 : 4; in s390_unwind() local
73 Dwarf_Addr next_cfa = this_sp + 16 * word_size + 32; in s390_unwind()
81 sigreg_ptr += word_size; in s390_unwind()
88 sigreg_ptr += word_size; in s390_unwind()
95 sigreg_ptr += word_size; in s390_unwind()
/external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.mers/
Dctor_sseq_all_zero.pass.cpp53 template <typename result_type, std::size_t word_size>
57 const std::size_t tempering_l = word_size; in test()
60 std::mersenne_twister_engine<result_type, word_size, state_size, in test()
69 const result_type Xneg1 = result_type(1) << (word_size - 1); in test()
Dvalues.pass.cpp52 static_assert((E::word_size == 32), ""); in test1()
73 where(E::word_size); in test1()
93 static_assert((E::word_size == 64), ""); in test2()
114 where(E::word_size); in test2()
/external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.sub/
Dvalues.pass.cpp40 static_assert((E::word_size == 24), ""); in test1()
51 where(E::word_size); in test1()
61 static_assert((E::word_size == 48), ""); in test2()
72 where(E::word_size); in test2()
/external/google-breakpad/src/common/mac/
Dmacho_reader.cc339 size_t word_size = segment.bits_64 ? 8 : 4; in WalkLoadCommands() local
343 .Read(word_size, false, &segment.vmaddr) in WalkLoadCommands()
344 .Read(word_size, false, &segment.vmsize) in WalkLoadCommands()
345 .Read(word_size, false, &file_offset) in WalkLoadCommands()
346 .Read(word_size, false, &file_size); in WalkLoadCommands()
456 size_t word_size = segment.bits_64 ? 8 : 4; in WalkSegmentSections() local
467 .Read(word_size, false, &section.address) in WalkSegmentSections()
468 .Read(word_size, false, &size) in WalkSegmentSections()
Dmacho_reader_unittest.cc469 WithConfiguration(Endianness endianness, size_t word_size) in WithConfiguration() argument
470 : endianness_(endianness), word_size_(word_size), saved_(current_) { in WithConfiguration()
478 static size_t word_size() { in word_size() function in WithConfiguration
503 explicit SizedSection(Endianness endianness, size_t word_size) in SizedSection() argument
504 : test_assembler::Section(endianness), word_size_(word_size) { in SizedSection()
509 word_size_(WithConfiguration::word_size()) { in SizedSection()
514 size_t word_size() const { return word_size_; } in word_size() function in SizedSection
515 void set_word_size(size_t word_size) { in set_word_size() argument
517 word_size_ = word_size; in set_word_size()
585 assert(contents.word_size() == word_size()); in Header()
[all …]
/external/epid-sdk/epid/common-testhelper/
Doctstr-testhelper.cc43 unsigned int word_size = in create_BigNum() local
51 sts = ippsBigNumGetSize(word_size, &bignum_ctx_size); in create_BigNum()
67 sts = ippsBigNumInit(word_size, ipp_bn_ctx); in create_BigNum()
/external/swiftshader/third_party/SPIRV-Tools/source/val/
Dvalidate_literals.cpp78 const uint32_t word_size = 32; in LiteralsPass() local
82 const auto remaining_value_bits = bit_width % word_size; in LiteralsPass()
/external/deqp-deps/SPIRV-Tools/source/val/
Dvalidate_literals.cpp78 const uint32_t word_size = 32; in LiteralsPass() local
82 const auto remaining_value_bits = bit_width % word_size; in LiteralsPass()
/external/google-breakpad/src/client/linux/minidump_writer/
Dlinux_ptrace_dumper.cc137 static const size_t word_size = sizeof(tmp); in CopyFromProcess() local
142 const size_t l = (length - done > word_size) ? word_size : (length - done); in CopyFromProcess()
/external/libnetfilter_conntrack/src/conntrack/
Dbsf.c244 nfct_bsf_load_attr(struct sock_filter *this, int word_size, int pos) in nfct_bsf_load_attr() argument
248 .code = BPF_LD|word_size|BPF_IND, in nfct_bsf_load_attr()
257 nfct_bsf_load_attr_offset(struct sock_filter *this, int word_size, in nfct_bsf_load_attr_offset() argument
262 .code = BPF_LD|word_size|BPF_IND, in nfct_bsf_load_attr_offset()
/external/u-boot/drivers/net/
De1000.c441 eeprom->word_size = 64; in e1000_init_eeprom_params()
457 eeprom->word_size = 256; in e1000_init_eeprom_params()
460 eeprom->word_size = 64; in e1000_init_eeprom_params()
486 eeprom->word_size = 256; in e1000_init_eeprom_params()
489 eeprom->word_size = 64; in e1000_init_eeprom_params()
528 eeprom->word_size = 2048; in e1000_init_eeprom_params()
572 eeprom->word_size = 64; in e1000_init_eeprom_params()
591 eeprom->word_size = 1 << (eeprom_size + EEPROM_WORD_SIZE_SHIFT); in e1000_init_eeprom_params()
780 if (eeprom->word_size == 0) in e1000_read_eeprom()
786 if ((offset >= eeprom->word_size) || in e1000_read_eeprom()
[all …]
De1000_spi.c338 else if (offset < (hw->eeprom.word_size << 1)) in do_e1000_spi_show()
339 length = (hw->eeprom.word_size << 1) - offset; in do_e1000_spi_show()
De1000.h1037 uint16_t word_size; member
/external/swiftshader/third_party/SPIRV-Tools/test/
Dbit_stream.cpp50 const int word_size = static_cast<int>(sizeof(T) * 8); in StreamToBuffer() local
54 for (int index = str_length - word_size; index >= 0; index -= word_size) { in StreamToBuffer()
56 std::bitset<sizeof(T) * 8>(str, index, word_size).to_ullong())); in StreamToBuffer()
58 const size_t suffix_length = str.length() % word_size; in StreamToBuffer()
/external/deqp-deps/SPIRV-Tools/test/
Dbit_stream.cpp50 const int word_size = static_cast<int>(sizeof(T) * 8); in StreamToBuffer() local
54 for (int index = str_length - word_size; index >= 0; index -= word_size) { in StreamToBuffer()
56 std::bitset<sizeof(T) * 8>(str, index, word_size).to_ullong())); in StreamToBuffer()
58 const size_t suffix_length = str.length() % word_size; in StreamToBuffer()
/external/selinux/mcstrans/src/
Dmcstrans.c961 word_size(const void *p1, const void *p2) { in word_size() function
1051 qsort(g->sword, g->sword_len, sizeof(word_t *), word_size); in build_regexps()
/external/google-breakpad/src/third_party/libdisasm/swig/
Dlibdisasm_oop.i1020 unsigned int word_size() { in word_size() function
/external/libcxx/include/
Drandom82 static constexpr size_t word_size = w;
150 static constexpr size_t word_size = w;
2090 static _LIBCPP_CONSTEXPR const size_t word_size = __w;
2225 …ster_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, __s, __b, __t, __c, __l, __f>::word_size;
2556 static _LIBCPP_CONSTEXPR const size_t word_size = __w;
2631 _LIBCPP_CONSTEXPR const size_t subtract_with_carry_engine<_UIntType, __w, __s, __r>::word_size;
/external/llvm/test/Bindings/OCaml/
Dcore.ml143 if Sys.word_size = 64; then begin
/external/swiftshader/third_party/llvm-7.0/llvm/test/Bindings/OCaml/
Dcore.ml153 if Sys.word_size = 64; then begin