HomeSort by: relevance | last modified time | path
    Searched defs:norm (Results 1 - 25 of 45) sorted by relevancy

1 2

  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
bn_mp_div.c 108 int res, n, t, i, norm, neg; local
154 norm = mp_count_bits(&y) % DIGIT_BIT;
155 if (norm < (int)(DIGIT_BIT-1)) {
156 norm = (DIGIT_BIT-1) - norm;
157 if ((res = mp_mul_2d (&x, norm, &x)) != MP_OKAY) {
160 if ((res = mp_mul_2d (&y, norm, &y)) != MP_OKAY) {
164 norm = 0;
274 mp_div_2d (&x, norm, &x, NULL);
  /src/crypto/external/bsd/heimdal/dist/lib/wind/
idn-lookup.c 76 uint32_t *norm = malloc(norm_len * sizeof(uint32_t)); local
80 if (norm == NULL && norm_len != 0)
86 ret = wind_stringprep(u, u_len, norm, &norm_len, WIND_PROFILE_NAME);
96 for (j = i; j < norm_len && !is_separator(norm[j]); ++j)
99 ret = wind_punycode_label_toascii(norm + i, j - i, ep, &len);
108 free(norm);
  /src/external/lgpl3/gmp/dist/
bootstrap.c 95 int norm; local
98 norm = numb_bits - mpz_sizeinbase (d, 2);
99 assert (norm >= 0);
101 mpz_setbit (t, 2*numb_bits - norm);
  /src/external/lgpl3/gmp/dist/mpn/sparc64/
mod_1.c 62 int norm, norm_rshift; local
110 count_leading_zeros_32 (norm, d_limb);
111 norm -= 32;
112 d_limb <<= norm; local
114 norm_rshift = 32 - norm;
115 norm_rmask = (norm == 0 ? 0 : 0xFFFFFFFF);
119 r = (r << norm) | ((n1 >> norm_rshift) & norm_rmask);
128 nshift = (n1 << norm) | ((n0 >> norm_rshift) & norm_rmask);
134 nshift = n1 << norm;
137 ASSERT ((r & ((1 << norm) - 1)) == 0)
161 d_limb <<= norm; local
    [all...]
divrem_1.c 92 int norm, norm_rshift; local
134 count_leading_zeros_32 (norm, d_limb);
135 norm -= 32;
136 d_limb <<= norm; local
137 r <<= norm; local
139 norm_rshift = 32 - norm;
140 norm_rmask = (norm == 0 ? 0 : 0xFFFFFFFF);
155 nshift = (n1 << norm) | ((n0 >> norm_rshift) & norm_rmask);
160 nshift = n1 << norm;
173 return r >> norm;
181 int norm, norm_rshift; local
211 d <<= norm; local
212 r <<= norm; local
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/lit/lit/llvm/
config.py 173 def norm(x): function in function:LLVMConfig.with_environment
179 paths = [norm(p) for p in current_paths]
189 p = norm(p)
  /src/external/apache2/llvm/dist/clang/lib/Headers/openmp_wrappers/
complex_cmath.h 56 // norm
58 template <class _Tp> __DEVICE__ _Tp norm(const std::complex<_Tp> &__c) { function in namespace:std
  /src/lib/libc/citrus/
citrus_csmapper.c 111 unsigned long norm; local
134 /* r1:pivot name, r2:norm among src and pivot */
138 norm = val32;
148 /* r2: norm among pivot and dst */
152 norm += val32;
153 /* judge minimum norm */
154 if (norm < *rnorm) {
155 *rnorm = norm;
186 unsigned long norm; member in struct:parse_arg
208 /* z1 : dst name, z2 : norm */
350 unsigned long norm; local
    [all...]
  /src/lib/libc/citrus/modules/
citrus_iconv_std.c 211 unsigned long norm; local
219 dbdst->db_charsets[i].ec_csname, &norm);
222 sd->sd_norm = norm;
225 if (sdtmp->sd_norm > norm) {
  /src/sys/external/bsd/drm2/dist/drm/i2c/
ch7006_drv.c 128 const struct ch7006_tv_norm_info *norm = &ch7006_tv_norms[priv->norm]; local
133 regs[CH7006_DISPMODE] = norm->dispmode | mode->dispmode;
239 ~mode->valid_norms & 1<<priv->norm)
273 priv->norm);
327 priv->norm = val;
459 priv->norm = TV_NORM_PAL;
474 priv->norm = i;
480 ch7006_err(client, "Invalid TV norm setting \"%s\".\n",
538 MODULE_PARM_DESC(tv_norm, "Default TV norm.\n
    [all...]
ch7006_mode.c 187 if (~mode->valid_norms & 1<<priv->norm)
210 const struct ch7006_tv_norm_info *norm = &ch7006_tv_norms[priv->norm]; local
216 if (norm->black_level < 339*fixed1/1000) {
226 black_level = round_fixed(norm->black_level*26625)/gain;
241 const struct ch7006_tv_norm_info *norm = &ch7006_tv_norms[priv->norm]; local
246 * (norm->subc_freq >> 24));
336 const struct ch7006_tv_norm_info *norm = &ch7006_tv_norms[priv->norm]; local
    [all...]
ch7006_priv.h 94 enum ch7006_tv_norm norm; member in struct:ch7006_priv
  /src/external/bsd/zstd/dist/lib/compress/
zstd_compress_sequences.c 74 S16 norm[MaxSeq + 1]; local
76 FORWARD_IF_ERROR(FSE_normalizeCount(norm, tableLog, count, nbSeq, max, ZSTD_useLowProbCount(nbSeq)), "");
77 return FSE_writeNCount(wksp, sizeof(wksp), norm, max, tableLog);
91 unsigned norm = (unsigned)((256 * count[s]) / total); local
92 if (count[s] != 0 && norm == 0)
93 norm = 1;
95 cost += count[s] * kInverseProbabilityLog256[norm];
136 * table described by norm. The max symbol support by norm is assumed >= max.
137 * norm must be valid for every symbol with non-zero probability in count
238 S16 norm[MaxSeq + 1]; member in struct:__anon8649
    [all...]
huf_compress.c 143 S16 norm[HUF_TABLELOG_MAX+1]; member in struct:__anon8605
171 CHECK_F( FSE_normalizeCount(wksp->norm, tableLog, wksp->count, wtSize, maxSymbolValue, /* useLowProbCount */ 0) );
174 { CHECK_V_F(hSize, FSE_writeNCount(op, (size_t)(oend-op), wksp->norm, maxSymbolValue, tableLog) );
179 CHECK_F( FSE_buildCTable_wksp(wksp->CTable, wksp->norm, maxSymbolValue, tableLog, wksp->scratchBuffer, sizeof(wksp->scratchBuffer)) );
  /src/sys/dev/ic/
aac.c 563 int nsegs, i, rv, state, norm, high; local
701 norm = htole32(AAC_HOST_NORM_CMD_ENTRIES);
705 norm;
707 norm;
713 norm = htole32(AAC_ADAP_NORM_CMD_ENTRIES);
717 norm;
719 norm;
725 norm = htole32(AAC_HOST_NORM_RESP_ENTRIES);
729 qt_qindex[AAC_HOST_NORM_RESP_QUEUE][AAC_PRODUCER_INDEX] = norm;
731 qt_qindex[AAC_HOST_NORM_RESP_QUEUE][AAC_CONSUMER_INDEX] = norm;
    [all...]
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
zap_micro.c 160 char norm[ZAP_MAXNAMELEN]; local
162 if (zap_normalize(zn->zn_zap, matchname, norm) != 0)
165 return (strcmp(zn->zn_key_norm, norm) == 0);
zfs_znode.c 2033 uint64_t norm = 0; local
2076 norm = val;
2128 zfsvfs->z_norm = norm;
  /src/external/bsd/bc/dist/
number.c 915 unsigned int norm; local
991 norm = 10 / ((int)*n2ptr + 1);
992 if (norm != 1)
994 _one_mult (num1, len1+scale1+extra+1, norm, num1);
995 _one_mult (n2ptr, len2, norm, n2ptr);
  /src/external/apache2/llvm/dist/clang/lib/Headers/
__clang_cuda_math.h 206 __DEVICE__ double norm(int __dim, const double *__t) { function
__clang_hip_math.h 921 double norm(int __dim, function
  /src/external/bsd/wpa/dist/src/tls/
libtommath.c 1686 int res, n, t, i, norm, neg; local
1732 norm = mp_count_bits(&y) % DIGIT_BIT;
1733 if (norm < (int)(DIGIT_BIT-1)) {
1734 norm = (DIGIT_BIT-1) - norm;
1735 if ((res = mp_mul_2d (&x, norm, &x)) != MP_OKAY) {
1738 if ((res = mp_mul_2d (&y, norm, &y)) != MP_OKAY) {
1742 norm = 0;
1852 mp_div_2d (&x, norm, &x, NULL);
  /src/external/bsd/zstd/dist/lib/decompress/
zstd_decompress_block.c 681 S16 norm[MaxSeq+1]; local
682 size_t const headerSize = FSE_readNCount(norm, &max, &tableLog, src, srcSize);
685 ZSTD_buildFSETable(DTableSpace, norm, max, baseValue, nbAdditionalBits, tableLog, wksp, wkspSize, bmi2);
  /src/sbin/nvmectl/
bignum.c 987 int res, n, t, i, norm, neg; local
1033 norm = mp_count_bits(&y) % DIGIT_BIT;
1034 if (norm < (int)(DIGIT_BIT-1)) {
1035 norm = (DIGIT_BIT-1) - norm;
1036 if ((res = lshift_bits(&x, norm, &x)) != MP_OKAY) {
1039 if ((res = lshift_bits(&y, norm, &y)) != MP_OKAY) {
1043 norm = 0;
1153 rshift_bits(&x, norm, &x, NULL);
  /src/crypto/external/bsd/netpgp/dist/src/libbn/
bignum.c 1064 int res, n, t, i, norm, neg; local
1110 norm = mp_count_bits(&y) % DIGIT_BIT;
1111 if (norm < (int)(DIGIT_BIT-1)) {
1112 norm = (DIGIT_BIT-1) - norm;
1113 if ((res = mp_mul_2d (&x, norm, &x)) != MP_OKAY) {
1116 if ((res = mp_mul_2d (&y, norm, &y)) != MP_OKAY) {
1120 norm = 0;
1230 mp_div_2d (&x, norm, &x, NULL);
  /src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
bignum.c 991 int res, n, t, i, norm, neg; local
1037 norm = mp_count_bits(&y) % DIGIT_BIT;
1038 if (norm < (int)(DIGIT_BIT-1)) {
1039 norm = (DIGIT_BIT-1) - norm;
1040 if ((res = lshift_bits(&x, norm, &x)) != MP_OKAY) {
1043 if ((res = lshift_bits(&y, norm, &y)) != MP_OKAY) {
1047 norm = 0;
1157 rshift_bits(&x, norm, &x, NULL);

Completed in 71 milliseconds

1 2