Symbol: negative
crypto/libressl/crypto/asn1/a_int.c
198
asn1_aint_get_int64(CBS *cbs, int negative, int64_t *out_val)
crypto/libressl/crypto/asn1/a_int.c
205
if (negative) {
crypto/libressl/crypto/asn1/a_int.c
652
uint8_t negative;
crypto/libressl/crypto/asn1/a_int.c
672
negative = (val >> 7);
crypto/libressl/crypto/asn1/a_int.c
673
padding = ~(negative - 1) & 0xff;
crypto/libressl/crypto/asn1/a_int.c
705
if (negative) {
crypto/libressl/crypto/asn1/asn1_locl.h
218
int asn1_aint_get_int64(CBS *cbs, int negative, int64_t *out_val);
crypto/libressl/crypto/curve25519/curve25519.c
3492
uint8_t bnegative = negative(b);
crypto/openssh/ed25519.c
1769
fe25519_cmov(&t->x, &v, negative(b));
crypto/openssh/smult_curve25519_ref.c
54
unsigned int negative;
crypto/openssh/smult_curve25519_ref.c
58
negative = -((a[31] >> 7) & 1);
crypto/openssh/smult_curve25519_ref.c
59
for (j = 0;j < 32;++j) a[j] ^= negative & (aorig[j] ^ a[j]);
lib/libutil/getmntopts.c
50
int negative;
lib/libutil/getmntopts.c
61
negative = 1;
lib/libutil/getmntopts.c
64
negative = 0;
lib/libutil/getmntopts.c
83
if (negative == m->m_inverse)
sbin/dhclient/parse.c
243
int negative = 0, tval, max;
sbin/dhclient/parse.c
248
negative = 1;
sbin/dhclient/parse.c
288
if (negative)
sbin/dhclient/parse.c
296
negative ? "-" : "", val, max);
sbin/dhclient/parse.c
300
negative ? "-" : "", val, max);
sbin/dhclient/parse.c
304
negative ? "-" : "", val, max);
sbin/dhclient/parse.c
309
if (negative)
sbin/mount/mount.c
356
int negative, found;
sbin/mount/mount.c
360
negative = 1;
sbin/mount/mount.c
363
negative = 0;
sbin/mount/mount.c
369
found = negative;
sbin/mount/mount.c
371
found = !negative;
sbin/mount_ufs/mount.c
315
int negative, found;
sbin/mount_ufs/mount.c
319
negative = 1;
sbin/mount_ufs/mount.c
322
negative = 0;
sbin/mount_ufs/mount.c
328
found = negative;
sbin/mount_ufs/mount.c
330
found = !negative;
sys/dev/drm/amd/amdgpu/amdgpu_mode.h
370
uint8_t negative;
sys/dev/drm/amd/display/dc/calcs/custom_float.c
124
bool negative,
sys/dev/drm/amd/display/dc/calcs/custom_float.c
174
if (negative && format->sign)
sys/dev/drm/amd/display/dc/calcs/custom_float.c
189
bool negative;
sys/dev/drm/amd/display/dc/calcs/custom_float.c
192
value, format, &negative, &mantissa, &exponenta) &&
sys/dev/drm/amd/display/dc/calcs/custom_float.c
194
format, negative, mantissa, exponenta, result);
sys/dev/drm/amd/display/dc/calcs/custom_float.c
32
bool *negative,
sys/dev/drm/amd/display/dc/calcs/custom_float.c
48
*negative = false;
sys/dev/drm/amd/display/dc/calcs/custom_float.c
57
*negative = format->sign;
sys/dev/drm/amd/display/dc/calcs/custom_float.c
60
*negative = false;
sys/dev/drm/amd/display/dc/inc/hw/opp.h
139
bool negative;
sys/dev/drm/amd/display/include/fixed31_32.h
232
bool negative = arg.value < 0;
sys/dev/drm/amd/display/include/fixed31_32.h
234
if (negative)
sys/dev/drm/amd/display/include/fixed31_32.h
237
if (negative)
sys/dev/drm/amd/display/include/fixed31_32.h
520
bool negative = arg.value < 0;
sys/dev/drm/amd/display/include/fixed31_32.h
527
if (negative)
sys/dev/drm/amd/display/include/fixed31_32.h
530
if (negative)
sys/dev/drm/radeon/radeon_legacy_encoders.c
327
if (pdata->negative)
sys/dev/drm/radeon/radeon_legacy_encoders.c
355
return pdata->negative ? RADEON_MAX_BL_LEVEL - backlight_level : backlight_level;
sys/dev/drm/radeon/radeon_legacy_encoders.c
413
pdata->negative = true;
sys/dev/drm/radeon/radeon_legacy_encoders.c
415
pdata->negative = false;
sys/dev/drm/radeon/radeon_legacy_encoders.c
420
pdata->negative = (rdev->family != CHIP_RV200 &&
sys/dev/drm/radeon/radeon_legacy_encoders.c
426
pdata->negative = (pdata->negative ||
sys/dev/drm/radeon/radeon_mode.h
288
uint8_t negative;
tools/regression/lib/libm/test-nearbyint.c
81
get_output(int testindex, int rmodeindex, int negative)
tools/regression/lib/libm/test-nearbyint.c
85
if (negative) { /* swap downwards and upwards if input is negative */
tools/regression/lib/libm/test-nearbyint.c
94
return (negative ? -out : out);