| /src/sys/arch/i386/stand/efiboot/ |
| efigetsecs.c | 33 #define isleap(_y) (((_y) % 4) == 0 && (((_y) % 100) != 0 || ((_y) % 400) == 0))
|
| /src/external/lgpl3/mpfr/dist/src/ |
| invsqrt_limb.h | 279 mp_limb_t _n, _x, _y, _z, _t; \ 284 _y = (_x * (_n >> 31)) >> 32; \ 285 MPFR_ASSERTD(_y < MPFR_LIMB_ONE << 32); \ 287 _z = _n - _y * _y; \ 288 /* reduce _z so that _z <= 2*_y */ \ 292 _z -= (_y + _y) + 1; \ 293 _y ++; \ 296 if (_z > _y + _y) [all...] |
| /src/sys/stand/efiboot/ |
| efigetsecs.c | 37 #define isleap(_y) (((_y) % 4) == 0 && (((_y) % 100) != 0 || ((_y) % 400) == 0))
|
| /src/sys/dev/hpc/ |
| video_subr.c | 85 if (_y < _x) { \ 86 BRESENHAM(_y, _x, -i, -k, func); \ 88 BRESENHAM(_x, _y, -k, -i, func); \ 91 if (_y < _x) { \ 92 BRESENHAM(_y, _x, -i, +k, func); \ 94 BRESENHAM(_x, _y, -k, +i, func); \ 99 if (_y < _x) { \ 100 BRESENHAM(_y, _x, +i, -k, func); \ 102 BRESENHAM(_x, _y, +k, -i, func); \ 105 if (_y < _x) { [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/ |
| lib-types.cc | 47 subclass1 (int _x, int _y) : class1 (_x), y (_y) {}
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/ |
| lib-types.cc | 47 subclass1 (int _x, int _y) : class1 (_x), y (_y) {}
|
| /src/external/bsd/ntp/dist/scripts/monitoring/ |
| lr.pl | 58 my($_x, $_y) = @_; 62 $self->{sy} += $_y; 63 $self->{sxy} += $_x * $_y; 65 $self->{sy2} += $_y**2;
|
| /src/tests/usr.bin/indent/ |
| lsym_word.c | 107 x._y = 5; 119 x._y = 5;
|
| /src/external/gpl3/gdb/dist/sim/testsuite/sh/ |
| add.s | 10 _y: .long 1 label 83 y: .long _y
|
| and.s | 10 _y: .long 0x55555555 label 88 y: .long _y
|
| bldnot.s | 10 _y: .long 0x55555555 label 101 y: .long _y
|
| bclr.s | 10 _y: .long 0x55555555 label 50 y: .long _y
|
| bld.s | 10 _y: .long 0x55555555 label 120 y: .long _y
|
| bset.s | 10 _y: .long 0x55555555 label 50 y: .long _y
|
| bst.s | 10 _y: .long 0x55555555 label 53 y: .long _y
|
| /src/external/gpl3/gdb.old/dist/sim/testsuite/sh/ |
| add.s | 10 _y: .long 1 label 83 y: .long _y
|
| and.s | 10 _y: .long 0x55555555 label 88 y: .long _y
|
| bldnot.s | 10 _y: .long 0x55555555 label 101 y: .long _y
|
| bclr.s | 10 _y: .long 0x55555555 label 50 y: .long _y
|
| bld.s | 10 _y: .long 0x55555555 label 120 y: .long _y
|
| bset.s | 10 _y: .long 0x55555555 label 50 y: .long _y
|
| bst.s | 10 _y: .long 0x55555555 label 53 y: .long _y
|
| /src/external/bsd/ntp/dist/sntp/libopts/compat/ |
| windows-config.h | 91 #define fchmod( _x, _y )
|
| /src/sys/external/bsd/ena-com/ |
| ena_plat.h | 196 #define min_t(type, _x, _y) ((type)(_x) < (type)(_y) ? (type)(_x) : (type)(_y)) 197 #define max_t(type, _x, _y) ((type)(_x) > (type)(_y) ? (type)(_x) : (type)(_y))
|
| /src/lib/libc/stdlib/ |
| getopt_long.c | 346 #define IDENTICAL_INTERPRETATION(_x, _y) \ 347 (long_options[(_x)].has_arg == long_options[(_y)].has_arg && \ 348 long_options[(_x)].flag == long_options[(_y)].flag && \ 349 long_options[(_x)].val == long_options[(_y)].val)
|