Symbol: small
crypto/openssh/sntrup761.c
1045
typedef small Inputs[p]; /* passed by reference */
crypto/openssh/sntrup761.c
1058
small f[p],v[p];
crypto/openssh/sntrup761.c
1079
small f[p],v[p];
crypto/openssh/sntrup761.c
1111
small a[p];
crypto/openssh/sntrup761.c
1134
small a[p];
crypto/openssh/sntrup761.c
429
static small F3_freeze(int16 x)
crypto/openssh/sntrup761.c
484
static int Weightw_mask(small *r)
crypto/openssh/sntrup761.c
494
static void R3_fromRq(small *out,const Fq *r)
crypto/openssh/sntrup761.c
501
static void R3_mult(small *h,const small *f,const small *g)
crypto/openssh/sntrup761.c
503
small fg[p+p-1];
crypto/openssh/sntrup761.c
504
small result;
crypto/openssh/sntrup761.c
527
static int R3_recip(small *out,const small *in)
crypto/openssh/sntrup761.c
529
small f[p+1],g[p+1],v[p+1],r[p+1];
crypto/openssh/sntrup761.c
575
static void Rq_mult_small(Fq *h,const Fq *f,const small *g)
crypto/openssh/sntrup761.c
612
static int Rq_recip3(Fq *out,const small *in)
crypto/openssh/sntrup761.c
670
static void Short_fromlist(small *out,const uint32 *in)
crypto/openssh/sntrup761.c
713
static void Short_random(small *out)
crypto/openssh/sntrup761.c
724
static void Small_random(small *out)
crypto/openssh/sntrup761.c
738
static void KeyGen(Fq *h,small *f,small *ginv)
crypto/openssh/sntrup761.c
740
small g[p];
crypto/openssh/sntrup761.c
753
static void Encrypt(Fq *c,const small *r,const Fq *h)
crypto/openssh/sntrup761.c
762
static void Decrypt(small *r,const Fq *c,const small *f,const small *ginv)
crypto/openssh/sntrup761.c
766
small e[p];
crypto/openssh/sntrup761.c
767
small ev[p];
crypto/openssh/sntrup761.c
788
static void KeyGen(Fq *A,small *a,const Fq *G)
crypto/openssh/sntrup761.c
798
static void Encrypt(Fq *B,int8 *T,const int8 *r,const Fq *G,const Fq *A,const small *b)
crypto/openssh/sntrup761.c
811
static void Decrypt(int8 *r,const Fq *B,const int8 *T,const small *a)
crypto/openssh/sntrup761.c
888
static void HashShort(small *out,const Inputs r)
crypto/openssh/sntrup761.c
907
static void XKeyGen(unsigned char *S,Fq *A,small *a)
crypto/openssh/sntrup761.c
920
small b[p];
crypto/openssh/sntrup761.c
937
static void Small_encode(unsigned char *s,const small *f)
crypto/openssh/sntrup761.c
939
small x;
crypto/openssh/sntrup761.c
953
static void Small_decode(small *f,const unsigned char *s)
crypto/openssh/sntrup761.c
960
*f++ = ((small)(x&3))-1; x >>= 2;
crypto/openssh/sntrup761.c
961
*f++ = ((small)(x&3))-1; x >>= 2;
crypto/openssh/sntrup761.c
962
*f++ = ((small)(x&3))-1; x >>= 2;
crypto/openssh/sntrup761.c
963
*f++ = ((small)(x&3))-1;
crypto/openssh/sntrup761.c
966
*f++ = ((small)(x&3))-1;
sys/dev/drm/i915/intel_pm.c
1138
unsigned int small, large;
sys/dev/drm/i915/intel_pm.c
1140
small = intel_wm_method1(clock, cpp, latency);
sys/dev/drm/i915/intel_pm.c
1143
wm = min(small, large);
sys/dev/drm/ttm/ttm_page_alloc.c
177
m->options.small = val;
sys/dev/drm/ttm/ttm_page_alloc.c
204
val = m->options.small;
sys/dev/drm/ttm/ttm_page_alloc.c
603
if (count < _manager->options.small
sys/dev/drm/ttm/ttm_page_alloc.c
835
_manager->options.small = SMALL_ALLOCATION;
sys/dev/drm/ttm/ttm_page_alloc.c
96
unsigned small;
sys/dev/drm/ttm/ttm_page_alloc_dma.c
1173
_manager->options.small = SMALL_ALLOCATION;
sys/dev/drm/ttm/ttm_page_alloc_dma.c
138
unsigned small;
sys/dev/drm/ttm/ttm_page_alloc_dma.c
219
m->options.small = val;
sys/dev/drm/ttm/ttm_page_alloc_dma.c
246
val = m->options.small;
sys/dev/drm/ttm/ttm_page_alloc_dma.c
786
unsigned count = _manager->options.small;
sys/dev/netif/mxge/if_mxge.c
1677
int next_is_first, chop, cnt, rdma_count, small;
sys/dev/netif/mxge/if_mxge.c
1757
small = (mss <= MXGEFW_SEND_SMALL_SIZE);
sys/dev/netif/mxge/if_mxge.c
1760
(small * MXGEFW_FLAGS_SMALL);
tools/regression/lib/libm/test-fmaxmin.c
108
testall(int testnum, long double big, long double small)
tools/regression/lib/libm/test-fmaxmin.c
117
if (!testall_r(big, small)) {
tools/regression/lib/libm/test-fmaxmin.c
124
(i == 4) ? "" : "not ", testnum, big, small);
tools/regression/lib/libm/test-fmaxmin.c
78
testall_r(long double big, long double small)
tools/regression/lib/libm/test-fmaxmin.c
82
long double expected_max = isnan(big) ? small : big;
tools/regression/lib/libm/test-fmaxmin.c
83
long double expected_min = isnan(small) ? big : small;
tools/regression/lib/libm/test-fmaxmin.c
86
TEST(fmaxf, float, big, small, expected_max);
tools/regression/lib/libm/test-fmaxmin.c
87
TEST(fmaxf, float, small, big, expected_max);
tools/regression/lib/libm/test-fmaxmin.c
88
TEST(fmax, double, big, small, expected_max);
tools/regression/lib/libm/test-fmaxmin.c
89
TEST(fmax, double, small, big, expected_max);
tools/regression/lib/libm/test-fmaxmin.c
90
TEST(fmaxl, long double, big, small, expected_max);
tools/regression/lib/libm/test-fmaxmin.c
91
TEST(fmaxl, long double, small, big, expected_max);
tools/regression/lib/libm/test-fmaxmin.c
92
TEST(fminf, float, big, small, expected_min);
tools/regression/lib/libm/test-fmaxmin.c
93
TEST(fminf, float, small, big, expected_min);
tools/regression/lib/libm/test-fmaxmin.c
94
TEST(fmin, double, big, small, expected_min);
tools/regression/lib/libm/test-fmaxmin.c
95
TEST(fmin, double, small, big, expected_min);
tools/regression/lib/libm/test-fmaxmin.c
96
TEST(fminl, long double, big, small, expected_min);
tools/regression/lib/libm/test-fmaxmin.c
97
TEST(fminl, long double, small, big, expected_min);
usr.bin/stat/stat.c
1083
if (small && ofmt != FMTF_DECIMAL)
usr.bin/stat/stat.c
632
int l, small, formats;
usr.bin/stat/stat.c
636
small = 0;
usr.bin/stat/stat.c
645
small = (sizeof(st->st_dev) == 4);
usr.bin/stat/stat.c
677
small = (sizeof(st->st_ino) == 4);
usr.bin/stat/stat.c
685
small = (sizeof(st->st_mode) == 4);
usr.bin/stat/stat.c
717
small = (sizeof(st->st_dev) == 4);
usr.bin/stat/stat.c
725
small = (sizeof(st->st_uid) == 4);
usr.bin/stat/stat.c
739
small = (sizeof(st->st_gid) == 4);
usr.bin/stat/stat.c
769
small = (sizeof(ts.tv_sec) == 4);
usr.bin/stat/stat.c
784
small = (sizeof(st->st_size) == 4);
usr.bin/stat/stat.c
792
small = (sizeof(st->st_blocks) == 4);
usr.bin/stat/stat.c
800
small = (sizeof(st->st_blksize) == 4);
usr.bin/stat/stat.c
809
small = (sizeof(st->st_flags) == 4);
usr.bin/stat/stat.c
822
small = (sizeof(st->st_gen) == 4);
usr.bin/stat/stat.c
831
small = 0;
usr.bin/stat/stat.c
851
small = 0;
usr.bin/stat/stat.c
873
small = 0;
usr.bin/stat/stat.c
920
small = 0;