| /freebsd-13.1/contrib/tzcode/zic/ |
| H A D | ialloc.c | 21 #define nonzero(n) (((n) == 0) ? 1 : (n)) macro 27 return malloc((size_t) nonzero(n)); 47 return realloc((void *) pointer, (size_t) nonzero(size));
|
| /freebsd-13.1/contrib/ofed/infiniband-diags/src/ |
| H A D | ibroute.c | 97 unsigned i, chunk, bit, nonzero = 0; in dump_mlid() local 105 nonzero++; in dump_mlid() 112 if (!nonzero && !dump_all) { in dump_mlid() 124 nonzero++; in dump_mlid() 128 if (!nonzero && !dump_all) { in dump_mlid()
|
| H A D | dump_fts.c | 72 unsigned i, chunk, bit, nonzero = 0; in dump_mlid() local 80 nonzero++; in dump_mlid() 87 if (!nonzero && !dump_all) { in dump_mlid() 99 nonzero++; in dump_mlid() 103 if (!nonzero && !dump_all) { in dump_mlid()
|
| /freebsd-13.1/crypto/openssl/doc/man3/ |
| H A D | CRYPTO_memcmp.pod | 22 CRYPTO_memcmp() returns 0 if the memory regions are equal and nonzero 28 as the return value when they differ is undefined, other than being nonzero.
|
| H A D | ASN1_TYPE_get.pod | 36 they are identical and nonzero otherwise. 65 value under BER can have any nonzero encoding but ASN1_TYPE_cmp() will 69 return value is nonzero. Technically if both parameters are NULL the two 83 ASN1_TYPE_cmp() returns 0 if the types are identical and nonzero otherwise.
|
| H A D | X509_ALGOR_dup.pod | 38 encodings and nonzero otherwise. 53 nonzero otherwise.
|
| H A D | SSL_CTX_set_stateless_cookie_generate_cb.pod | 52 length B<cookie_len>. A nonzero return value from verify_stateless_cookie_cb() 67 pointed to by B<cookie> and is of length B<cookie_len>. A nonzero return value
|
| H A D | X509_check_ca.pod | 27 Actually, any nonzero value means that this certificate could have been
|
| H A D | UI_UTIL_read_pw.pod | 24 If B<verify> is nonzero, the password will be verified as well.
|
| H A D | X509_check_purpose.pod | 16 represented by I<id>. If I<ca> is nonzero, then certificate I<x> is
|
| H A D | BIO_get_data.pod | 28 whether initialisation has been completed for this BIO or not. A nonzero value
|
| H A D | OCSP_cert_to_id.pod | 55 OCSP_id_cmp() and OCSP_id_issuer_cmp() returns zero for a match and nonzero
|
| H A D | OCSP_resp_find_status.pod | 115 OCSP_single_get0_status(). If B<sec> is nonzero it indicates how many seconds 170 account for clock skew the B<maxsec> field can be set to nonzero in
|
| H A D | OCSP_request_add1_nonce.pod | 60 and match, both absent or present in the response only. A nonzero return
|
| H A D | DSA_set_method.pod | 67 DSA_set_method() returns nonzero if the provided B<meth> was successfully set as
|
| H A D | DH_set_method.pod | 67 DH_set_method() returns nonzero if the provided B<meth> was successfully set as
|
| H A D | RAND_add.pod | 65 descriptors. Conversely, a nonzero argument enables the retention of
|
| H A D | DES_random_key.pod | 123 DES_set_key_checked() if the I<DES_check_key> flag is nonzero, 140 If the I<encrypt> argument is nonzero (DES_ENCRYPT), the I<input> 159 (CBC) mode of DES. If the I<encrypt> argument is nonzero, the
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/ubsan/ |
| H A D | ubsan_checks.inc | 24 UBSAN_CHECK(NullptrWithNonZeroOffset, "nullptr-with-nonzero-offset", 26 UBSAN_CHECK(NullptrAfterNonZeroOffset, "nullptr-after-nonzero-offset",
|
| /freebsd-13.1/lib/libc/softfloat/bits64/ |
| H A D | softfloat-macros | 36 Shifts `a' right by the number of bits given in `count'. If any nonzero 40 result will be either 0 or 1, depending on whether `a' is zero or nonzero. 63 Shifts `a' right by the number of bits given in `count'. If any nonzero 67 result will be either 0 or 1, depending on whether `a' is zero or nonzero. 92 64 nonzero bits; this is stored at the location pointed to by `z0Ptr'. The 171 number of bits given in `count'. If any nonzero bits are shifted off, they 176 nonzero. The result is broken into two 64-bit pieces which are stored at 216 at most 128 nonzero bits; these are broken into two 64-bit pieces which are
|
| /freebsd-13.1/lib/libc/softfloat/bits32/ |
| H A D | softfloat-macros | 35 Shifts `a' right by the number of bits given in `count'. If any nonzero 39 result will be either 0 or 1, depending on whether `a' is zero or nonzero. 96 number of bits given in `count'. If any nonzero bits are shifted off, they 101 nonzero. The result is broken into two 32-bit pieces which are stored at 141 at most 64 nonzero bits; these are broken into two 32-bit pieces which are
|
| /freebsd-13.1/contrib/dialog/samples/copifuncs/ |
| H A D | copi.ifmcfg2 | 21 # .out files are NOT created if nonzero specified, you must run ifpack
|
| /freebsd-13.1/contrib/bc/src/ |
| H A D | num.c | 1413 bool nonzero = false; in bc_num_nonZeroDig() local 1414 for (i = len - 1; !nonzero && i < len; --i) nonzero = (a[i] != 0); in bc_num_nonZeroDig() 1415 return nonzero; in bc_num_nonZeroDig() 1476 bool nonzero = false; in bc_num_d_long() local 1509 nonzero = (divisor > 1 << ((10 * BC_BASE_DIGS) / 6 + 1)); in bc_num_d_long() 1512 if (!nonzero) { in bc_num_d_long() 1532 nonzero = bc_num_nonZeroDig(b->num, len - 1); in bc_num_d_long() 1538 divisor += nonzero; in bc_num_d_long() 1605 if (nonzero) cmp = bc_num_divCmp(n, b, len); in bc_num_d_long()
|
| /freebsd-13.1/crypto/openssl/doc/man1/ |
| H A D | rand.pod | 27 Otherwise, the command will fail with a nonzero error code.
|
| /freebsd-13.1/contrib/ncurses/misc/ |
| H A D | chkdef.cmd | 39 * returns nonzero if two symbols have the same code or a line has a wrong
|