Home
last modified time | relevance | path

Searched refs:WORD_SIZE (Results 1 – 25 of 646) sorted by relevance

12345678910>>...26

/dports/biology/bowtie/bowtie-1.3.1/
H A Dbitset.h72 _sz = nwords * WORD_SIZE /* words to bits */; in _errmsg()
167 TIndexOffU nwords = (sz / WORD_SIZE)+1; in _errmsg()
178 _sz = nwords * WORD_SIZE; in _errmsg()
302 memset(_words, 0, ((LEN / WORD_SIZE)+1) * OFF_SIZE); in FixedBitset()
309 memset(_words, 0, ((LEN / WORD_SIZE)+1) * OFF_SIZE); in clear()
360 for(TIndexOffU i = 0; i < (LEN / WORD_SIZE)+1; i++) {
373 for(TIndexOffU i = 0; i < (LEN / WORD_SIZE)+1; i++) {
395 TIndexOffU _words[(LEN / WORD_SIZE)+1]; // storage
405 _words = new TIndexOffU[((len_ / WORD_SIZE)+1)]; in FixedBitset2()
406 memset(_words, 0, ((len_ / WORD_SIZE)+1) * OFF_SIZE); in FixedBitset2()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/arch/x86/kvm/vmx/
H A Dvmenter.S9 #define WORD_SIZE (BITS_PER_LONG / 8) macro
11 #define VCPU_RAX __VCPU_REGS_RAX * WORD_SIZE
12 #define VCPU_RCX __VCPU_REGS_RCX * WORD_SIZE
128 lea -WORD_SIZE(%_ASM_SP), %_ASM_ARG2
167 mov WORD_SIZE(%_ASM_SP), %_ASM_AX
218 add $WORD_SIZE, %_ASM_SP
266 mov 3*WORD_SIZE(%rbp), %_ASM_ARG2
267 mov 2*WORD_SIZE(%rbp), %_ASM_ARG1
270 push 3*WORD_SIZE(%ebp)
271 push 2*WORD_SIZE(%ebp)
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/arch/x86/kvm/vmx/
H A Dvmenter.S9 #define WORD_SIZE (BITS_PER_LONG / 8) macro
11 #define VCPU_RAX __VCPU_REGS_RAX * WORD_SIZE
12 #define VCPU_RCX __VCPU_REGS_RCX * WORD_SIZE
128 lea -WORD_SIZE(%_ASM_SP), %_ASM_ARG2
167 mov WORD_SIZE(%_ASM_SP), %_ASM_AX
218 add $WORD_SIZE, %_ASM_SP
266 mov 3*WORD_SIZE(%rbp), %_ASM_ARG2
267 mov 2*WORD_SIZE(%rbp), %_ASM_ARG1
270 push 3*WORD_SIZE(%ebp)
271 push 2*WORD_SIZE(%ebp)
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/arch/x86/kvm/vmx/
H A Dvmenter.S9 #define WORD_SIZE (BITS_PER_LONG / 8) macro
11 #define VCPU_RAX __VCPU_REGS_RAX * WORD_SIZE
12 #define VCPU_RCX __VCPU_REGS_RCX * WORD_SIZE
128 lea -WORD_SIZE(%_ASM_SP), %_ASM_ARG2
167 mov WORD_SIZE(%_ASM_SP), %_ASM_AX
218 add $WORD_SIZE, %_ASM_SP
266 mov 3*WORD_SIZE(%rbp), %_ASM_ARG2
267 mov 2*WORD_SIZE(%rbp), %_ASM_ARG1
270 push 3*WORD_SIZE(%ebp)
271 push 2*WORD_SIZE(%ebp)
[all …]
/dports/security/py-pycrypto/pycrypto-2.6.1/src/
H A Dhash_SHA2_template.c49 (((sha2_word_t) hs->buf[(WORD_SIZE*i)+0]) << (WORD_SIZE_BITS- 8)) | in sha_compress()
50 (((sha2_word_t) hs->buf[(WORD_SIZE*i)+1]) << (WORD_SIZE_BITS-16)) | in sha_compress()
52 (((sha2_word_t) hs->buf[(WORD_SIZE*i)+3]) << (WORD_SIZE_BITS-32)) in sha_compress()
58 (((sha2_word_t) hs->buf[(WORD_SIZE*i)+7])) in sha_compress()
153 for (i = 0; i < WORD_SIZE; i++) in sha_done()
155 (hs->length_upper >> ((WORD_SIZE - 1 - i) * 8)) & 0xFF; in sha_done()
156 for (i = 0; i < WORD_SIZE; i++) in sha_done()
157 hs->buf[i + LAST_BLOCK_SIZE + WORD_SIZE] = in sha_done()
158 (hs->length_lower >> ((WORD_SIZE - 1 - i) * 8)) & 0xFF; in sha_done()
163 hash[i] = (hs->state[i / WORD_SIZE] >> in sha_done()
[all …]
H A Dhash_SHA2.h46 #ifndef WORD_SIZE
47 #error SHA2 Implementation must define WORD_SIZE before including this header
49 #if ((WORD_SIZE != 4) && (WORD_SIZE != 8))
50 #error WORD_SIZE must be either 4 or 8
52 #define WORD_SIZE_BITS (WORD_SIZE*8)
61 #define PADDING_SIZE (2 * WORD_SIZE)
/dports/multimedia/v4l-utils/linux-5.13-rc2/arch/x86/kvm/svm/
H A Dvmenter.S8 #define WORD_SIZE (BITS_PER_LONG / 8) macro
11 #define VCPU_RCX __VCPU_REGS_RCX * WORD_SIZE
12 #define VCPU_RDX __VCPU_REGS_RDX * WORD_SIZE
13 #define VCPU_RBX __VCPU_REGS_RBX * WORD_SIZE
15 #define VCPU_RBP __VCPU_REGS_RBP * WORD_SIZE
16 #define VCPU_RSI __VCPU_REGS_RSI * WORD_SIZE
17 #define VCPU_RDI __VCPU_REGS_RDI * WORD_SIZE
20 #define VCPU_R8 __VCPU_REGS_R8 * WORD_SIZE
21 #define VCPU_R9 __VCPU_REGS_R9 * WORD_SIZE
22 #define VCPU_R10 __VCPU_REGS_R10 * WORD_SIZE
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/arch/x86/kvm/svm/
H A Dvmenter.S8 #define WORD_SIZE (BITS_PER_LONG / 8) macro
11 #define VCPU_RCX __VCPU_REGS_RCX * WORD_SIZE
12 #define VCPU_RDX __VCPU_REGS_RDX * WORD_SIZE
13 #define VCPU_RBX __VCPU_REGS_RBX * WORD_SIZE
15 #define VCPU_RBP __VCPU_REGS_RBP * WORD_SIZE
16 #define VCPU_RSI __VCPU_REGS_RSI * WORD_SIZE
17 #define VCPU_RDI __VCPU_REGS_RDI * WORD_SIZE
20 #define VCPU_R8 __VCPU_REGS_R8 * WORD_SIZE
21 #define VCPU_R9 __VCPU_REGS_R9 * WORD_SIZE
22 #define VCPU_R10 __VCPU_REGS_R10 * WORD_SIZE
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/arch/x86/kvm/svm/
H A Dvmenter.S8 #define WORD_SIZE (BITS_PER_LONG / 8) macro
11 #define VCPU_RCX __VCPU_REGS_RCX * WORD_SIZE
12 #define VCPU_RDX __VCPU_REGS_RDX * WORD_SIZE
13 #define VCPU_RBX __VCPU_REGS_RBX * WORD_SIZE
15 #define VCPU_RBP __VCPU_REGS_RBP * WORD_SIZE
16 #define VCPU_RSI __VCPU_REGS_RSI * WORD_SIZE
17 #define VCPU_RDI __VCPU_REGS_RDI * WORD_SIZE
20 #define VCPU_R8 __VCPU_REGS_R8 * WORD_SIZE
21 #define VCPU_R9 __VCPU_REGS_R9 * WORD_SIZE
22 #define VCPU_R10 __VCPU_REGS_R10 * WORD_SIZE
[all …]
/dports/biology/edlib/edlib-d5774b4/edlib/src/
H A Dedlib.cpp368 for (int r = (b+1) * WORD_SIZE - 1; r >= b * WORD_SIZE; r--) { in buildPeq()
468 vector<int> scores(WORD_SIZE); in getBlockCellValues()
477 scores[WORD_SIZE - 1] = score; in getBlockCellValues()
490 dest[WORD_SIZE - 1 - i] = score; in readBlock()
512 dest[WORD_SIZE - 1] = score; in readBlockReverse()
576 bl->score = (b + 1) * WORD_SIZE; in myersCalcEditDistanceSemiGlobal()
763 bl->score = (b + 1) * WORD_SIZE; in myersCalcEditDistanceNW()
842 int numCells = lastBlock == maxNumBlocks - 1 ? WORD_SIZE - W : WORD_SIZE; in myersCalcEditDistanceNW()
845 for (int i = WORD_SIZE - numCells; i < WORD_SIZE; i++) { in myersCalcEditDistanceNW()
860 int numCells = firstBlock == maxNumBlocks - 1 ? WORD_SIZE - W : WORD_SIZE; in myersCalcEditDistanceNW()
[all …]
/dports/biology/canu/canu-2.2/src/utility/src/utility/
H A Dedlib.C506 for (int r = (b+1) * WORD_SIZE - 1; r >= b * WORD_SIZE; r--) { in buildPeq()
607 vector<int> scores(WORD_SIZE); in getBlockCellValues()
616 scores[WORD_SIZE - 1] = score; in getBlockCellValues()
629 dest[WORD_SIZE - 1 - i] = score; in readBlock()
651 dest[WORD_SIZE - 1] = score; in readBlockReverse()
716 bl->score = (b + 1) * WORD_SIZE; in myersCalcEditDistanceSemiGlobal()
905 bl->score = (b + 1) * WORD_SIZE; in myersCalcEditDistanceNW()
984 int numCells = lastBlock == maxNumBlocks - 1 ? WORD_SIZE - W : WORD_SIZE; in myersCalcEditDistanceNW()
987 for (int i = WORD_SIZE - numCells; i < WORD_SIZE; i++) { in myersCalcEditDistanceNW()
1002 int numCells = firstBlock == maxNumBlocks - 1 ? WORD_SIZE - W : WORD_SIZE; in myersCalcEditDistanceNW()
[all …]
/dports/devel/spark/spark-2.1.1/common/unsafe/src/main/java/org/apache/spark/unsafe/bitset/
H A DBitSetMethods.java31 private static final long WORD_SIZE = 8; field in BitSetMethods
43 final long wordOffset = baseOffset + (index >> 6) * WORD_SIZE; in set()
54 final long wordOffset = baseOffset + (index >> 6) * WORD_SIZE; in unset()
65 final long wordOffset = baseOffset + (index >> 6) * WORD_SIZE; in isSet()
75 for (int i = 0; i < bitSetWidthInWords; i++, addr += WORD_SIZE) { in anySet()
113 long word = Platform.getLong(baseObject, baseOffset + wi * WORD_SIZE) >> subIndex; in nextSetBit()
121 word = Platform.getLong(baseObject, baseOffset + wi * WORD_SIZE); in nextSetBit()
/dports/lang/v/v-0.1.29/thirdparty/bignum/
H A Dbn.h28 #ifndef WORD_SIZE
29 #define WORD_SIZE 4 macro
33 #define BN_ARRAY_SIZE (128 / WORD_SIZE)
38 #ifndef WORD_SIZE
39 #error Must define WORD_SIZE to be 1, 2, 4
40 #elif (WORD_SIZE == 1)
52 #elif (WORD_SIZE == 2)
59 #elif (WORD_SIZE == 4)
/dports/math/tiny-bignum-c/tiny-bignum-c-201fb20/
H A Dbn.h28 #ifndef WORD_SIZE
29 #define WORD_SIZE 4 macro
33 #define BN_ARRAY_SIZE (128 / WORD_SIZE)
38 #ifndef WORD_SIZE
39 #error Must define WORD_SIZE to be 1, 2, 4
40 #elif (WORD_SIZE == 1)
52 #elif (WORD_SIZE == 2)
59 #elif (WORD_SIZE == 4)
/dports/cad/cascade-compiler/cascade-f4f7ae8bd1dd379790c0e58c286df90b8d1cdcde/share/cascade/stdlib/
H A Dmemory.v2 parameter WORD_SIZE = 8, constant
9 input wire[WORD_SIZE-1:0] wdata,
10 output wire[WORD_SIZE-1:0] rdata
16 reg[WORD_SIZE-1:0] data[SIZE-1:0];
21 reg[WORD_SIZE-1:0] temp = 0;
/dports/net/frr7-pythontools/frr-frr-7.5.1/lib/
H A Dbitfield.h53 #define WORD_SIZE (sizeof(word_t) * 8) macro
72 (v).m = ((N) / WORD_SIZE + 1); \
115 #define bf_index(b) ((b) / WORD_SIZE)
116 #define bf_offset(b) ((b) % WORD_SIZE)
156 (b) += (w * WORD_SIZE); \
165 start_bit = start_index & (WORD_SIZE - 1); in bf_find_next_set_bit()
174 for (offset = start_bit; offset < WORD_SIZE; ++offset) { in bf_find_next_set_bit()
176 return ((i * WORD_SIZE) + offset); in bf_find_next_set_bit()
/dports/net/frr7/frr-frr-7.5.1/lib/
H A Dbitfield.h53 #define WORD_SIZE (sizeof(word_t) * 8) macro
72 (v).m = ((N) / WORD_SIZE + 1); \
115 #define bf_index(b) ((b) / WORD_SIZE)
116 #define bf_offset(b) ((b) % WORD_SIZE)
156 (b) += (w * WORD_SIZE); \
165 start_bit = start_index & (WORD_SIZE - 1); in bf_find_next_set_bit()
174 for (offset = start_bit; offset < WORD_SIZE; ++offset) { in bf_find_next_set_bit()
176 return ((i * WORD_SIZE) + offset); in bf_find_next_set_bit()
/dports/security/py-first-server/FIRST-server-0.0.7/server/first_core/engines/
H A Dcatalog1lib.py691 WORD_SIZE = 32 # 32 bits. variable
692 MAX_WORD = (1 << WORD_SIZE) - 1
733 return ((x >> i) | (x << (WORD_SIZE - i))) & MAX_WORD
749 WORD_SIZE
753 WORD_SIZE
772 nbytes = WORD_SIZE // BYTE_SIZE
/dports/lang/gcc6-aux/gcc-6-20180516/libffi/src/microblaze/
H A Dffi.c36 #define WORD_SIZE sizeof(unsigned int) macro
37 #define ARGS_REGISTER_SIZE (WORD_SIZE * 6)
38 #define WORD_ALIGN(x) ALIGN(x, WORD_SIZE)
62 memcpy(addr, &(ecif->rvalue), WORD_SIZE); in ffi_prep_args()
63 stack_args_p += WORD_SIZE; in ffi_prep_args()
120 if (size < WORD_SIZE) in ffi_prep_args()
122 memcpy (addr + (WORD_SIZE - size), value, size); in ffi_prep_args()
212 ptr += WORD_SIZE; in ffi_closure_call_SYSV()
242 if (arg_types[i]->size < WORD_SIZE) in ffi_closure_call_SYSV()
244 memcpy (ptr, ptr + (WORD_SIZE - arg_types[i]->size), arg_types[i]->size); in ffi_closure_call_SYSV()
/dports/lang/gcc12-devel/gcc-12-20211205/libffi/src/microblaze/
H A Dffi.c36 #define WORD_SIZE sizeof(unsigned int) macro
37 #define ARGS_REGISTER_SIZE (WORD_SIZE * 6)
38 #define WORD_FFI_ALIGN(x) FFI_ALIGN(x, WORD_SIZE)
62 memcpy(addr, &(ecif->rvalue), WORD_SIZE); in ffi_prep_args()
63 stack_args_p += WORD_SIZE; in ffi_prep_args()
120 if (size < WORD_SIZE) in ffi_prep_args()
122 memcpy (addr + (WORD_SIZE - size), value, size); in ffi_prep_args()
212 ptr += WORD_SIZE; in ffi_closure_call_SYSV()
242 if (arg_types[i]->size < WORD_SIZE) in ffi_closure_call_SYSV()
244 memcpy (ptr, ptr + (WORD_SIZE - arg_types[i]->size), arg_types[i]->size); in ffi_closure_call_SYSV()
/dports/devel/jna/jna-5.7.0/native/libffi/src/microblaze/
H A Dffi.c36 #define WORD_SIZE sizeof(unsigned int) macro
37 #define ARGS_REGISTER_SIZE (WORD_SIZE * 6)
38 #define WORD_FFI_ALIGN(x) FFI_ALIGN(x, WORD_SIZE)
62 memcpy(addr, &(ecif->rvalue), WORD_SIZE); in ffi_prep_args()
63 stack_args_p += WORD_SIZE; in ffi_prep_args()
120 if (size < WORD_SIZE) in ffi_prep_args()
122 memcpy (addr + (WORD_SIZE - size), value, size); in ffi_prep_args()
212 ptr += WORD_SIZE; in ffi_closure_call_SYSV()
242 if (arg_types[i]->size < WORD_SIZE) in ffi_closure_call_SYSV()
244 memcpy (ptr, ptr + (WORD_SIZE - arg_types[i]->size), arg_types[i]->size); in ffi_closure_call_SYSV()
/dports/lang/python-legacy/Python-2.7.18/Modules/_ctypes/libffi/src/microblaze/
H A Dffi.c36 #define WORD_SIZE sizeof(unsigned int) macro
37 #define ARGS_REGISTER_SIZE (WORD_SIZE * 6)
38 #define WORD_ALIGN(x) ALIGN(x, WORD_SIZE)
62 memcpy(addr, &(ecif->rvalue), WORD_SIZE); in ffi_prep_args()
63 stack_args_p += WORD_SIZE; in ffi_prep_args()
120 if (size < WORD_SIZE) in ffi_prep_args()
122 memcpy (addr + (WORD_SIZE - size), value, size); in ffi_prep_args()
212 ptr += WORD_SIZE; in ffi_closure_call_SYSV()
242 if (arg_types[i]->size < WORD_SIZE) in ffi_closure_call_SYSV()
244 memcpy (ptr, ptr + (WORD_SIZE - arg_types[i]->size), arg_types[i]->size); in ffi_closure_call_SYSV()
/dports/lang/gcc8/gcc-8.5.0/libffi/src/microblaze/
H A Dffi.c36 #define WORD_SIZE sizeof(unsigned int) macro
37 #define ARGS_REGISTER_SIZE (WORD_SIZE * 6)
38 #define WORD_ALIGN(x) ALIGN(x, WORD_SIZE)
62 memcpy(addr, &(ecif->rvalue), WORD_SIZE); in ffi_prep_args()
63 stack_args_p += WORD_SIZE; in ffi_prep_args()
120 if (size < WORD_SIZE) in ffi_prep_args()
122 memcpy (addr + (WORD_SIZE - size), value, size); in ffi_prep_args()
212 ptr += WORD_SIZE; in ffi_closure_call_SYSV()
242 if (arg_types[i]->size < WORD_SIZE) in ffi_closure_call_SYSV()
244 memcpy (ptr, ptr + (WORD_SIZE - arg_types[i]->size), arg_types[i]->size); in ffi_closure_call_SYSV()
/dports/lang/python27/Python-2.7.18/Modules/_ctypes/libffi/src/microblaze/
H A Dffi.c36 #define WORD_SIZE sizeof(unsigned int) macro
37 #define ARGS_REGISTER_SIZE (WORD_SIZE * 6)
38 #define WORD_ALIGN(x) ALIGN(x, WORD_SIZE)
62 memcpy(addr, &(ecif->rvalue), WORD_SIZE); in ffi_prep_args()
63 stack_args_p += WORD_SIZE; in ffi_prep_args()
120 if (size < WORD_SIZE) in ffi_prep_args()
122 memcpy (addr + (WORD_SIZE - size), value, size); in ffi_prep_args()
212 ptr += WORD_SIZE; in ffi_closure_call_SYSV()
242 if (arg_types[i]->size < WORD_SIZE) in ffi_closure_call_SYSV()
244 memcpy (ptr, ptr + (WORD_SIZE - arg_types[i]->size), arg_types[i]->size); in ffi_closure_call_SYSV()
/dports/lang/racket/racket-8.3/src/bc/foreign/libffi/src/microblaze/
H A Dffi.c36 #define WORD_SIZE sizeof(unsigned int) macro
37 #define ARGS_REGISTER_SIZE (WORD_SIZE * 6)
38 #define WORD_FFI_ALIGN(x) FFI_ALIGN(x, WORD_SIZE)
62 memcpy(addr, &(ecif->rvalue), WORD_SIZE); in ffi_prep_args()
63 stack_args_p += WORD_SIZE; in ffi_prep_args()
120 if (size < WORD_SIZE) in ffi_prep_args()
122 memcpy (addr + (WORD_SIZE - size), value, size); in ffi_prep_args()
212 ptr += WORD_SIZE; in ffi_closure_call_SYSV()
242 if (arg_types[i]->size < WORD_SIZE) in ffi_closure_call_SYSV()
244 memcpy (ptr, ptr + (WORD_SIZE - arg_types[i]->size), arg_types[i]->size); in ffi_closure_call_SYSV()

12345678910>>...26