Searched refs:bits (Results 276 - 300 of 727) sorted by relevance

<<11121314151617181920>>

/freebsd-current/crypto/openssl/crypto/bn/
H A Dbn_lib.c103 int bits = (l != 0); local
109 bits += 32 & mask;
116 bits += 16 & mask;
122 bits += 8 & mask;
128 bits += 4 & mask;
134 bits += 2 & mask;
140 bits += 1 & mask;
142 return bits;
890 int secbits, bits; local
905 bits
[all...]
H A Dbn_exp2.c20 int i, j, bits, b, bits1, bits2, ret = local
46 bits = (bits1 > bits2) ? bits1 : bits2;
136 for (b = bits - 1; b >= 0; b--) {
145 * consider bits b-window1+1 .. b for this window
162 * consider bits b-window2+1 .. b for this window
/freebsd-current/contrib/netbsd-tests/lib/libc/stdio/
H A Dt_printf.c140 uint64_t bits; member in union:__anon5213
164 u.bits = (uint64_t)uh << 32 | ul;
/freebsd-current/contrib/opencsd/decoder/include/opencsd/ptm/
H A Dtrc_pkt_elem_ptm.h109 const bool isBranchExcepPacket() const { return (exception.bits.present == 1); };
186 exception.bits.present = 1;
/freebsd-current/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_defs.h96 // All addresses and PCs are assumed to be compressable to that many bits.
144 // Zeroizes high part, returns 'bits' lsb bits.
146 T GetLsb(T v, int bits) { argument
147 return (T)((u64)v & ((1ull << bits) - 1));
/freebsd-current/usr.sbin/cron/lib/
H A Dentry.c522 * bits one bit per flag, default=FALSE
529 get_list(bitstr_t *bits, int low, int high, const char *names[], int ch, argument
547 bit_nclear(bits, 0, (high-low+1));
553 ch = get_range(bits, low, high, names, ch, file);
572 * bits one bit per flag, default=FALSE
579 get_range(bitstr_t *bits, int low, int high, const char *names[], int ch, argument
606 if (EOF == set_element(bits, low, high, num1))
653 if (EOF == set_element(bits, low, high, i))
720 set_element(bitstr_t *bits, int low, int high, int number) argument
727 bit_set(bits, (numbe
[all...]
/freebsd-current/sys/dev/ath/ath_hal/ar5211/
H A Dar5211_recv.c53 * Set Receive Enable bits.
104 * Set multicast filter 0 (lower 32-bits)
105 * filter 1 (upper 32-bits)
167 ar5211SetRxFilter(struct ath_hal *ah, uint32_t bits) argument
169 OS_REG_WRITE(ah, AR_RX_FILTER, bits);
/freebsd-current/sys/dev/drm2/
H A Ddrm_hashtab.c117 * Just insert an item and return any "bits" bit key that hasn't been
121 unsigned long seed, int bits, int shift,
125 unsigned long mask = (1 << bits) - 1;
120 drm_ht_just_insert_please(struct drm_open_hash *ht, struct drm_hash_item *item, unsigned long seed, int bits, int shift, unsigned long add) argument
/freebsd-current/sys/dev/ntb/
H A Dntb.c508 ntb_db_clear(device_t ntb, uint64_t bits) argument
512 return (NTB_DB_CLEAR(device_get_parent(ntb), bits << nc->dboff));
516 ntb_db_clear_mask(device_t ntb, uint64_t bits) argument
520 return (NTB_DB_CLEAR_MASK(device_get_parent(ntb), bits << nc->dboff));
533 ntb_db_set_mask(device_t ntb, uint64_t bits) argument
537 return (NTB_DB_SET_MASK(device_get_parent(ntb), bits << nc->dboff));
541 ntb_peer_db_set(device_t ntb, uint64_t bits) argument
545 return (NTB_PEER_DB_SET(device_get_parent(ntb), bits << nc->dboff));
/freebsd-current/contrib/llvm-project/lld/ELF/
H A DTarget.cpp160 const unsigned bits = config->is64 ? 64 : 32; local
171 bits);
/freebsd-current/contrib/mandoc/
H A Dmansearch.h95 uint64_t bits; /* name type mask */ member in struct:manpage
/freebsd-current/contrib/ntp/kernel/sys/
H A Dbsd_audioirig.h61 u_char bits[13]; /* 100 irig data bits */ member in struct:irig_time
89 u_long err; /* error status bits */
/freebsd-current/contrib/opencsd/decoder/include/opencsd/etmv3/
H A Dtrc_pkt_types_etmv3.h94 } bits; member in struct:_ocsd_etmv3_excep
153 uint8_t ts_update_bits; /**< bits of ts updated this packet (if TS packet) */
H A Dtrc_pkt_elem_etmv3.h125 const bool isExcepPkt() const { return (m_pkt_data.exception.bits.present == 1); };
128 const bool isExcepCancel() const { return (m_pkt_data.exception.bits.present == 1) && (m_pkt_data.exception.bits.cancel == 1); };
/freebsd-current/crypto/openssh/
H A Ddh.c270 debug2("bits set: %d/%d", bits_set, BN_num_bits(dh_p));
352 /* rfc2409 "Second Oakley Group" (1024 bits) */
488 * attack complexity approximately the same as O(2**bits).
494 dh_estimate(int bits) argument
496 if (bits <= 112)
498 if (bits <= 128)
500 if (bits <= 192)
/freebsd-current/sys/dev/isci/scil/
H A Dscif_sas_remote_device_ready_substate_handlers.c408 if ( dev_protocols.u.bits.attached_ssp_target
409 || dev_protocols.u.bits.attached_stp_target)
431 ASSERT(!dev_protocols.u.bits.attached_stp_target);
527 if (dev_protocols.u.bits.attached_smp_target)
/freebsd-current/sys/dev/usb/controller/
H A Dehci_imx.c155 imx_usbmisc_set_ctrl(device_t dev, u_int index, uint32_t bits) argument
162 bus_write_4(sc->mmio, index * sizeof(uint32_t), reg | bits);
167 imx_usbmisc_clr_ctrl(device_t dev, u_int index, uint32_t bits) argument
174 bus_write_4(sc->mmio, index * sizeof(uint32_t), reg & ~bits);
/freebsd-current/lib/libc/amd64/string/
H A Dstrchrnul.S51 movzbl %sil, %esi # clear stray high bits
96 and %r9, %rax # not including junk bits
110 and %r9, %rax # not including junk bits
130 shl %cl, %edx # bits corresponding to bytes in the string
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DCTFTypes.h45 CTFInteger(lldb::user_id_t uid, llvm::StringRef name, uint32_t bits, argument
47 : CTFType(eInteger, uid, name), bits(bits), encoding(encoding) {}
51 uint32_t bits; member in struct:CTFInteger
/freebsd-current/contrib/processor-trace/libipt/src/
H A Dpt_encoder.c382 if (packet->payload.mode.bits.exec.csl)
385 if (packet->payload.mode.bits.exec.csd)
392 if (packet->payload.mode.bits.tsx.intx)
395 if (packet->payload.mode.bits.tsx.abrt)
815 packet.payload.mode.bits.exec = pt_set_exec_mode(mode);
821 int pt_encode_mode_tsx(struct pt_encoder *encoder, uint8_t bits) argument
828 if (bits & pt_mob_tsx_intx)
829 packet.payload.mode.bits.tsx.intx = 1;
831 packet.payload.mode.bits.tsx.intx = 0;
833 if (bits
[all...]
/freebsd-current/contrib/wpa/src/crypto/
H A Daes_i.h70 static inline u32 rotr(u32 val, int bits) argument
72 return (val >> bits) | (val << (32 - bits));
/freebsd-current/contrib/ncurses/ncurses/base/
H A Dlib_color.c262 /* find the number of bits needed for the maximum color value */
269 result->bits.red = UChar(n);
270 result->bits.green = UChar(n);
271 result->bits.blue = UChar(width - (2 * n));
273 result->bits.red = UChar(n);
274 result->bits.green = UChar(n);
275 result->bits.blue = UChar(n);
295 result->bits.red = UChar(red);
296 result->bits.green = UChar(green);
297 result->bits
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerSHA1.cpp96 uint32_t sha1_rol32(uint32_t number, uint8_t bits) { argument
97 return ((number << bits) | (number >> (32-bits)));
171 sha1_addUncounted(s, 0); // So zero pad the top bits
/freebsd-current/contrib/opencsd/decoder/include/opencsd/
H A Docsd_if_types.h315 /** A bit mask for the first 'bits' consecutive bits of an address */
316 #define OCSD_BIT_MASK(bits) (bits == OCSD_MAX_VA_BITSIZE) ? OCSD_VA_MASK : ((ocsd_vaddr_t)1 << bits) - 1
392 uint32_t opcode; /**< Input: Opcode at address. 16 bit opcodes will use MS 16bits of parameter. */
502 common operational flags - bottom 16 bits,
503 protocol component specific - top 16 bits.
524 common operational flags - bottom 16 bits,
525 protcol component specific - top 16 bits
[all...]
/freebsd-current/crypto/openssl/crypto/rsa/
H A Drsa_local.h145 int (*rsa_keygen) (RSA *rsa, int bits, BIGNUM *e, BN_GENCB *cb);
146 int (*rsa_multi_prime_keygen) (RSA *rsa, int bits, int primes,
163 int ossl_rsa_multip_cap(int bits);

Completed in 318 milliseconds

<<11121314151617181920>>