/freebsd/crypto/openssl/crypto/ |
H A D | c64xpluscpuid.pl | 44 ZERO A3:A2 45 || ZERO B2 49 || ZERO A1 50 || ZERO B1 96 ||[!B0] ZERO A4 98 || [B0] ZERO A0 110 ZERO.L A4 133 ZERO A0 134 || ZERO B0 135 || ZERO A1 [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | KnownBits.h | 24 APInt Zero; member 29 KnownBits(APInt Zero, APInt One) in KnownBits() 30 : Zero(std::move(Zero)), One(std::move(One)) {} in KnownBits() 33 // Default construct Zero and One. 37 KnownBits(unsigned BitWidth) : Zero(BitWidth, 0), One(BitWidth, 0) {} in KnownBits() 41 assert(Zero.getBitWidth() == One.getBitWidth() && in getBitWidth() 42 "Zero and One should have the same width!"); in getBitWidth() 43 return Zero.getBitWidth(); in getBitWidth() 47 bool hasConflict() const { return Zero.intersects(One); } in hasConflict() 51 return Zero.popcount() + One.popcount() == getBitWidth(); in isConstant() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | KnownBits.cpp | 28 APInt CarryKnownZero = ~(PossibleSumZero ^ LHS.Zero ^ RHS.Zero); in computeForAddCarry() 32 APInt LHSKnownUnion = LHS.Zero | LHS.One; in computeForAddCarry() 33 APInt RHSKnownUnion = RHS.Zero | RHS.One; in computeForAddCarry() 39 KnownOut.Zero = ~std::move(PossibleSumZero) & Known; in computeForAddCarry() 48 LHS, RHS, Carry.Zero.getBoolValue(), Carry.One.getBoolValue()); in computeForAddCarry() 69 std::swap(NotRHS.Zero, NotRHS.One); in computeForAddSub() 98 KnownOut.Zero.setBits(BitWidth - 1 - NumBits, BitWidth - 1); in computeForAddSub() 100 KnownOut.Zero.setHighBits(MaxVal.countl_zero()); in computeForAddSub() 121 KnownOut.Zero.setSignBit(); in computeForAddSub() 126 KnownOut.Zero.setBits(BitWidth - 1 - NumBits, BitWidth - 1); in computeForAddSub() [all …]
|
/freebsd/lib/libusb/ |
H A D | libusb20.3 | 248 This function returns zero upon success. 250 Non-zero return values indicate a LIBUSB20_ERROR value. 267 is zero, the 286 This function returns zero upon success. 288 Non-zero return values indicate a LIBUSB20_ERROR value. 298 can be used to open stream ID zero. 324 A value of zero means that no data was transferred. 353 length of the SETUP packet, 8 bytes, which is part of frame zero. 368 will return non-zero if the given USB transfer is 371 Else this function returns zero. [all …]
|
/freebsd/lib/libc/xdr/ |
H A D | xdr.3 | 99 This routine returns one if it succeeds, zero otherwise. 112 filter produces values of either one or zero. 113 This routine returns one if it succeeds, zero otherwise. 133 This routine returns one if it succeeds, zero otherwise. 144 This routine returns one if it succeeds, zero otherwise. 183 This routine returns one if it succeeds, zero otherwise. 195 This routine returns one if it succeeds, zero otherwise. 207 This routine returns one if it succeeds, zero otherwise. 261 This routine returns one if it succeeds, zero otherwise. 299 This routine returns one if it succeeds, zero otherwise. [all …]
|
/freebsd/share/man/man3/ |
H A D | bitstring.3 | 169 clear or set the zero-based numbered bit 179 set or clear the zero-based numbered bits from 189 evaluates to non-zero if the zero-based numbered bit 193 is set, and zero otherwise. 198 evaluates to non-zero if the zero-based numbered bits from 211 the zero-based number of the first bit not set in the array of 224 the zero-based number of the first bit set in the array of 236 the zero-based number of the first bit not set in the array of 240 at or after the zero-based bit index 253 the zero-based number of the first bit set in the array of [all …]
|
/freebsd/contrib/jemalloc/src/ |
H A D | large.c | 14 large_malloc(tsdn_t *tsdn, arena_t *arena, size_t usize, bool zero) { in large_malloc() argument 17 return large_palloc(tsdn, arena, usize, CACHELINE, zero); in large_malloc() 22 bool zero) { in large_palloc() argument 36 zero = true; in large_palloc() 39 * Copy zero into is_zeroed and pass the copy when allocating the in large_palloc() 40 * extent, so that it is possible to make correct junk/zero fill in large_palloc() 41 * decisions below, even if is_zeroed ends up true when zero is false. in large_palloc() 43 is_zeroed = zero; in large_palloc() 63 if (zero) { in large_palloc() 132 bool zero) { in large_ralloc_no_move_expand() argument [all …]
|
/freebsd/contrib/processor-trace/libipt/internal/include/ |
H A D | pt_insn.h | 109 * non-zero: direct 110 * zero: indirect 124 * Returns non-zero if it does, zero if it doesn't (or @insn/@iext is NULL). 131 * Returns non-zero if it does, zero if it doesn't (or @insn/@iext is NULL). 138 * Returns non-zero if it is, zero if it isn't (or @insn/@iext is NULL). 145 * Returns non-zero if it is, zero if it isn't (or @insn/@iext is NULL). 152 * Returns non-zero if it does, zero if it doesn't (or @insn/@iext is NULL). 159 * Returns non-zero if it does, zero if it doesn't (or @insn/@iext is NULL). 166 * Returns non-zero if it is, zero if it isn't (or @insn/@iext is NULL). 176 * Returns zero on success, a negative error code otherwise. [all …]
|
/freebsd/contrib/jemalloc/include/jemalloc/internal/ |
H A D | jemalloc_internal_inlines_c.h | 42 iallocztm(tsdn_t *tsdn, size_t size, szind_t ind, bool zero, tcache_t *tcache, in iallocztm() argument 53 ret = arena_malloc(tsdn, arena, size, ind, zero, tcache, slow_path); in iallocztm() 61 ialloc(tsd_t *tsd, size_t size, szind_t ind, bool zero, bool slow_path) { in ialloc() argument 62 return iallocztm(tsd_tsdn(tsd), size, ind, zero, tcache_get(tsd), false, in ialloc() 67 ipallocztm(tsdn_t *tsdn, size_t usize, size_t alignment, bool zero, in ipallocztm() argument 78 ret = arena_palloc(tsdn, arena, usize, alignment, zero, tcache); in ipallocztm() 87 ipalloct(tsdn_t *tsdn, size_t usize, size_t alignment, bool zero, in ipalloct() argument 89 return ipallocztm(tsdn, usize, alignment, zero, tcache, false, arena); in ipalloct() 93 ipalloc(tsd_t *tsd, size_t usize, size_t alignment, bool zero) { in ipalloc() argument 94 return ipallocztm(tsd_tsdn(tsd), usize, alignment, zero, in ipalloc() [all …]
|
/freebsd/sys/riscv/riscv/ |
H A D | swtch.S | 163 fscsr zero 164 fcvt.d.l f0, zero 165 fcvt.d.l f1, zero 166 fcvt.d.l f2, zero 167 fcvt.d.l f3, zero 168 fcvt.d.l f4, zero 169 fcvt.d.l f5, zero 170 fcvt.d.l f6, zero 171 fcvt.d.l f7, zero 172 fcvt.d.l f8, zero [all …]
|
/freebsd/sys/i386/include/ |
H A D | tss.h | 43 int tss_link; /* actually 16 bits: top 16 bits must be zero */ 45 int tss_ss0; /* actually 16 bits: top 16 bits must be zero */ 47 int tss_ss1; /* actually 16 bits: top 16 bits must be zero */ 49 int tss_ss2; /* actually 16 bits: top 16 bits must be zero */ 61 int tss_es; /* actually 16 bits: top 16 bits must be zero */ 62 int tss_cs; /* actually 16 bits: top 16 bits must be zero */ 63 int tss_ss; /* actually 16 bits: top 16 bits must be zero */ 64 int tss_ds; /* actually 16 bits: top 16 bits must be zero */ 65 int tss_fs; /* actually 16 bits: top 16 bits must be zero */ 66 int tss_gs; /* actually 16 bits: top 16 bits must be zero */ [all …]
|
/freebsd/contrib/openpam/doc/man/ |
H A D | openpam_readlinev.3 | 71 zero, 73 returns zero, and 75 returns a non-zero value. 83 returns zero, and 85 returns a non-zero value. 89 is non-zero, 91 returns a non-zero value and 93 returns zero. 104 returns a non-zero value, and 107 a non-zero value.
|
/freebsd/crypto/openssl/crypto/modes/asm/ |
H A D | ghashp8-ppc.pl | 72 my ($zero,$t0,$t1,$t2,$xC2,$H,$Hh,$Hl,$lemask)=map("v$_",(4..12)); 95 vxor $zero,$zero,$zero 97 vsldoi $xC2,$xC2,$zero,15 # 0xe1... 98 vsldoi $t1,$zero,$t0,1 # ...1 109 vsldoi $xC2,$zero,$xC2,8 # 0xc2.0 110 vsldoi $Hl,$zero,$H,8 # ... and split 111 vsldoi $Hh,$H,$zero,8 127 vsldoi $t0,$Xm,$zero,8 128 vsldoi $t1,$zero,$Xm,8 141 vsldoi $H2l,$zero,$H2,8 [all …]
|
/freebsd/sys/powerpc/ps3/ |
H A D | ps3-hvcall.master | 49 HVCALL 0 lv1_allocate_memory size,log_page_size,zero,flags base_addr,muid 58 HVCALL 12 lv1_connect_irq_plug_ext ppe_id,cpu_id,virq,outlet,zero 74 HVCALL 65 lv1_disable_logical_spe spe_id,zero 75 HVCALL 66 lv1_clear_spe_interrupt_status spe_id,class,stat,zero 97 HVCALL 170 lv1_open_device bus,dev,zero 108 HVCALL 186 lv1_net_remove_multicast_address bus,dev,zero,one 109 HVCALL 187 lv1_net_start_tx_dma bus,dev,bus_addr,zero 110 HVCALL 188 lv1_net_stop_tx_dma bus,dev,zero 111 HVCALL 189 lv1_net_start_rx_dma bus,dev,bus_addr,zero 112 HVCALL 190 lv1_net_stop_rx_dma bus,dev,zero [all …]
|
H A D | ps3-hvcall.h | 48 int lv1_allocate_memory(uint64_t size, uint64_t log_page_size, uint64_t zero, uint64_t flags, uint6… 57 …nect_irq_plug_ext(uint64_t ppe_id, uint64_t cpu_id, uint64_t virq, uint64_t outlet, uint64_t zero); 73 int lv1_disable_logical_spe(uint64_t spe_id, uint64_t zero); 74 int lv1_clear_spe_interrupt_status(uint64_t spe_id, uint64_t class, uint64_t stat, uint64_t zero); 96 int lv1_open_device(uint64_t bus, uint64_t dev, uint64_t zero); 107 int lv1_net_remove_multicast_address(uint64_t bus, uint64_t dev, uint64_t zero, uint64_t one); 108 int lv1_net_start_tx_dma(uint64_t bus, uint64_t dev, uint64_t bus_addr, uint64_t zero); 109 int lv1_net_stop_tx_dma(uint64_t bus, uint64_t dev, uint64_t zero); 110 int lv1_net_start_rx_dma(uint64_t bus, uint64_t dev, uint64_t bus_addr, uint64_t zero); 111 int lv1_net_stop_rx_dma(uint64_t bus, uint64_t dev, uint64_t zero); [all …]
|
/freebsd/crypto/heimdal/doc/doxyout/hcrypto/man/man3/ |
H A D | hcrypto_des.3 | 110 \fIencp\fP if non zero, encrypt. if zero, decrypt. 134 \fIencp\fP if non zero, encrypt. if zero, decrypt. 169 \fIencp\fP if non zero, encrypt. if zero, decrypt. 185 \fIencp\fP if non zero, encrypt. if zero, decrypt. 211 \fIencp\fP if non zero, encrypt. if zero, decrypt. 225 \fIencp\fP if non zero, encrypt. if zero, decrypt. 282 0 on success, non zero on random number generator failure. 304 \fIencp\fP if non zero, encrypt. if zero, decrypt.
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
H A D | Declaration.h | 37 /// to zero if there is no line number information. 41 /// Set to zero if there is no column number information. 56 /// zero. 118 /// Non-zero indicates a valid line number, zero indicates no 125 /// Non-zero indicates a valid column number, zero indicates no 166 /// Non-zero indicates a valid line number, zero indicates no 173 /// Non-zero indicates a valid column number, zero indicates no 181 /// Non-zero values indicates a valid line number, zero indicates no line 184 /// Non-zero values indicates a valid column number, zero indicates no column
|
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/ |
H A D | fp_mul_impl.inc | 25 // Detect if a or b is zero, denormal, infinity, or NaN. 40 // infinity * non-zero = +/- infinity 43 // infinity * zero = NaN 49 // non-zero * infinity = +/- infinity 52 // zero * infinity = NaN 57 // zero * anything = +/- zero 60 // anything * zero = +/- zero 100 // If the result is so small that it just underflows to zero, return 101 // zero with the appropriate sign. Mathematically, there is no need to 121 // or underflow to zero, but those are the correct results in those cases.
|
/freebsd/crypto/openssl/crypto/aes/asm/ |
H A D | aesni-mb-x86_64.pl | 104 ($counters,$mask,$zero)=map("%xmm$_",(10..12)); 171 movdqu ($key),$zero # 0-round key 201 pxor $zero,@out[0] 203 pxor $zero,@out[1] 205 pxor $zero,@out[2] 207 pxor $zero,@out[3] 260 pxor $zero,$zero 263 pcmpgtd $zero,$mask 264 movdqu -0x78($key),$zero # reload 0-round key 320 pxor $zero,@inp[0] [all …]
|
/freebsd/tools/test/devrandom/ |
H A D | hammer.urandom | 6 # This also reads /dev/zero to make sure there is no brokenness there. 10 open(ZERO, "/dev/zero") || die "Cannot open /dev/zero - $!\n"; 15 sysread(ZERO, $b, 20); 21 $z == 0 || die "/dev/zero is returning non-zero!\n";
|
/freebsd/contrib/llvm-project/clang/lib/Headers/ |
H A D | lzcntintrin.h | 21 /// Counts the number of leading zero bits in the operand. 29 /// \returns An unsigned 16-bit integer containing the number of leading zero 34 /// Counts the number of leading zero bits in the operand. 42 /// \returns An unsigned 32-bit integer containing the number of leading zero 51 /// Counts the number of leading zero bits in the operand. 59 /// \returns An unsigned 32-bit integer containing the number of leading zero 70 /// Counts the number of leading zero bits in the operand. 78 /// \returns An unsigned 64-bit integer containing the number of leading zero 84 /// Counts the number of leading zero bits in the operand. 92 /// \returns An unsigned 64-bit integer containing the number of leading zero
|
/freebsd/share/man/man9/ |
H A D | getenv.9 | 137 It returns a non-zero value if the variable 139 exists and zero if it does not. 156 These functions fail and return zero if 166 and zero is returned. 197 zero is returned. 203 followed by a null character and a non-zero value is returned. 237 functions return zero on success and -1 on failure. 241 function returns zero if the specified environment variable does not exist and 242 a non-zero value if it does exist. 253 functions return a non-zero value on success and zero on failure.
|
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/types/ |
H A D | tst.relenum.d | 40 zero, enumerator 52 /zero >= one || second <= first || zero == second/ 55 printf("zero = %d; one = %d; two = %d", zero, one, two); 64 printf("zero = %d; one = %d; two = %d", zero, one, two); 70 /first < two && second > one && one != two && zero != first/
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/ |
H A D | MipsInstPrinter.cpp | 275 // beq $zero, $zero, $L2 => b $L2 in printAlias() 276 // beq $r0, $zero, $L2 => beqz $r0, $L2 in printAlias() 277 return (isReg<Mips::ZERO>(MI, 0) && isReg<Mips::ZERO>(MI, 1) && in printAlias() 279 (isReg<Mips::ZERO>(MI, 1) && in printAlias() 282 // beq $r0, $zero, $L2 => beqz $r0, $L2 in printAlias() 287 // bne $r0, $zero, $L2 => bnez $r0, $L2 in printAlias() 288 return isReg<Mips::ZERO>(MI, 1) && in printAlias() 291 // bne $r0, $zero, in printAlias() [all...] |
/freebsd/contrib/openpam/lib/libpam/ |
H A D | openpam_ctype.h | 34 * Evaluates to non-zero if the argument is a digit. 40 * Evaluates to non-zero if the argument is a hex digit. 48 * Evaluates to non-zero if the argument is an uppercase letter. 54 * Evaluates to non-zero if the argument is a lowercase letter. 60 * Evaluates to non-zero if the argument is a letter. 66 * Evaluates to non-zero if the argument is a linear whitespace character. 74 * Evaluates to non-zero if the argument is a whitespace character. 80 * Evaluates to non-zero if the argument is a printable ASCII character. 87 * Returns non-zero if the argument belongs to the POSIX Portable Filename
|