| /src/tests/usr.bin/xlint/lint1/ |
| msg_121.c | 16 shift_by_double(int x, double amount) 23 return x << amount;
|
| /src/sys/arch/hppa/spmath/ |
| hppa.h | 43 /* amount is assumed to be a constant between 0 and 32 (non-inclusive) */ 44 #define Shiftdouble(left,right,amount,dest) \ 45 /* int left, right, amount, dest; */ \ 46 dest = ((left) << (32-(amount))) | ((unsigned int)(right) >> (amount)) 48 /* amount must be less than 32 */ 49 #define Variableshiftdouble(left,right,amount,dest) \ 50 /* unsigned int left, right; int amount, dest; */ \ 51 if (amount == 0) dest = right; \ 52 else dest = ((((unsigned) left)&0x7fffffff) << (32-(amount))) | \ [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/ |
| dlmopen-lib.c | 26 int amount = gdb_dlmopen_glob; local 27 return n + amount; /* bp.inc. */
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| dlmopen-lib.c | 26 int amount = gdb_dlmopen_glob; local 27 return n + amount; /* bp.inc. */
|
| dlmopen-ns-ids-lib.c | 26 int amount = gdb_dlmopen_glob; local 27 return n + amount; /* bp.inc. */
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.mi/ |
| mi-dlmopen-lib.c | 26 int amount = gdb_dlmopen_glob; local 27 return n + amount; /* bp.inc. */
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.compile/ |
| compile-cplus-inherit.cc | 19 int do_it (int amount) { return a_ + amount; } 27 int do_it (int amount) { return b_ - amount; } 35 int do_it (int amount) { return c_ * amount; }
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.compile/ |
| compile-cplus-inherit.cc | 19 int do_it (int amount) { return a_ + amount; } 27 int do_it (int amount) { return b_ - amount; } 35 int do_it (int amount) { return c_ * amount; }
|
| /src/games/hack/ |
| hack.wield.c | 131 chwepon(struct obj *otmp, int amount) 133 const char *color = (amount < 0) ? "black" : "green"; 137 (amount > 0) ? "Your hands twitch." 141 if (uwep->otyp == WORM_TOOTH && amount > 0) { 147 if (uwep->otyp == CRYSKNIFE && amount < 0) { 153 if (amount > 0 && uwep->spe > 5 && rn2(3)) { 162 amount *= 2; 163 stime = (amount * amount == 1) ? "moment" : "while"; 166 uwep->spe += amount; [all...] |
| def.gold.h | 69 long amount; member in struct:gold
|
| /src/external/gpl3/gcc/dist/gcc/ |
| wide-int-bitmask.h | 94 wide_int_bitmask::operator << (int amount) 97 if (amount >= 64) 100 ret.high = low << (amount - 64); 102 else if (amount == 0) 106 ret.low = low << amount; 107 ret.high = (low >> (64 - amount)) | (high << amount); 113 wide_int_bitmask::operator >> (int amount) 116 if (amount >= 64) 118 ret.low = high >> (amount - 64) [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| wide-int-bitmask.h | 94 wide_int_bitmask::operator << (int amount) 97 if (amount >= 64) 100 ret.high = low << (amount - 64); 102 else if (amount == 0) 106 ret.low = low << amount; 107 ret.high = (low >> (64 - amount)) | (high << amount); 113 wide_int_bitmask::operator >> (int amount) 116 if (amount >= 64) 118 ret.low = high >> (amount - 64) [all...] |
| /src/external/bsd/kyua-cli/dist/utils/ |
| memory.cpp | 140 /// Queries the total amount of physical memory. 145 /// \return The amount of physical memory, in bytes. If the code does not know 150 static int64_t amount = -1; local 151 if (amount == -1) { 154 amount = 0; 156 amount = query_sysctl(query_sysctl_mib); 160 query_type % amount); local 162 POST(amount > -1); 163 return units::bytes(amount);
|
| /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/devinit/ |
| nouveau_nvkm_subdev_devinit_nv20.c | 43 uint32_t amount, off; local 58 amount = nvkm_rd32(device, 0x10020c); 59 for (off = amount; off > 0x2000000; off -= 0x2000000) 62 amount = nvkm_rd32(device, 0x10020c); 63 if (amount != fbmem_peek(fb, amount - 4))
|
| /src/external/gpl3/gcc/dist/libgcc/config/libbid/ |
| bid128_quantize.c | 33 int exponent_x, exponent_y, digits_x, extra_digits, amount; variable 155 amount = recip_scale[extra_digits]; 158 if (amount >= 64) { 160 CR.w[0] = CX2.w[1] >> (amount - 64); 162 __shr_128 (CR, CX2, amount); 175 if (amount >= 64) { 176 remainder_h = CX2.w[0] | (CX2.w[1] << (128 - amount)); 178 remainder_h = CX2.w[0] << (64 - amount); 194 if (amount >= 64) { 195 REM_H.w[1] = (CX2.w[1] << (128 - amount)); [all...] |
| /src/external/gpl3/gcc.old/dist/libgcc/config/libbid/ |
| bid128_quantize.c | 33 int exponent_x, exponent_y, digits_x, extra_digits, amount; variable 155 amount = recip_scale[extra_digits]; 158 if (amount >= 64) { 160 CR.w[0] = CX2.w[1] >> (amount - 64); 162 __shr_128 (CR, CX2, amount); 175 if (amount >= 64) { 176 remainder_h = CX2.w[0] | (CX2.w[1] << (128 - amount)); 178 remainder_h = CX2.w[0] << (64 - amount); 194 if (amount >= 64) { 195 REM_H.w[1] = (CX2.w[1] << (128 - amount)); [all...] |
| /src/external/zlib/pigz/dist/zopfli/ |
| zlib_container.c | 36 size_t amount = size > sums_overflow ? sums_overflow : size; local 37 size -= amount; 38 while (amount > 0) { 41 amount--;
|
| /src/crypto/external/apache2/openssl/dist/test/ |
| bio_prefix_text.c | 39 static size_t amount = 0; variable 51 { "n", OPT_AMOUNT, 'p', "Amount of BIO_f_prefix() filters" }, 86 if (!BIO_write_ex(chain[amount - 1], buf, bytes_in, &bytes)) 97 size_t n = amount; 131 BIO_free_all(chain[amount - 1]); 165 amount = strtoul(arg, &endptr, 10); 172 if (amount < 1) { 210 if (idx >= amount) { 212 progname, idx, amount - 1); 241 if (idx >= amount) { [all...] |
| /src/crypto/external/bsd/openssl/dist/test/ |
| bio_prefix_text.c | 39 static size_t amount = 0; variable 51 { "n", OPT_AMOUNT, 'p', "Amount of BIO_f_prefix() filters" }, 86 if (!BIO_write_ex(chain[amount - 1], buf, bytes_in, &bytes)) 97 size_t n = amount; 129 BIO_free_all(chain[amount - 1]); 164 amount = strtoul(arg, &endptr, 10); 171 if (amount < 1) { 209 if (idx >= amount) { 211 progname, idx, amount - 1); 240 if (idx >= amount) { [all...] |
| /src/external/public-domain/xz/dist/src/liblzma/lz/ |
| lz_encoder.h | 137 /// Extra amount of data to keep available before the "actual" 144 /// Extra amount of data to keep available after the "actual" 188 // amount of extra buffer needed after dict_size becomes 291 mf_skip(lzma_mf *mf, uint32_t amount) 293 if (amount != 0) { 294 mf->skip(mf, amount); 295 mf->read_ahead += amount; 338 extern void lzma_mf_hc3_skip(lzma_mf *dict, uint32_t amount); 341 extern void lzma_mf_hc4_skip(lzma_mf *dict, uint32_t amount); 344 extern void lzma_mf_bt2_skip(lzma_mf *dict, uint32_t amount); [all...] |
| /src/external/gpl3/gcc/dist/gcc/config/h8300/ |
| genmova.sh | 80 # Loop over the shift amount. 101 mult) amount=$mult;; 102 ashift) amount=$shift;; 113 (const_int $amount)) 132 (const_int $amount)))] 140 (const_int $amount)) 169 (const_int $amount)) 178 (const_int $amount))
|
| /src/external/gpl3/gcc.old/dist/gcc/config/h8300/ |
| genmova.sh | 80 # Loop over the shift amount. 101 mult) amount=$mult;; 102 ashift) amount=$shift;; 113 (const_int $amount)) 132 (const_int $amount)))] 140 (const_int $amount)) 169 (const_int $amount)) 178 (const_int $amount))
|
| /src/games/trek/ |
| score.c | 50 static void scoreitem(long amount, const char *descfmt, ...) 54 scoreitem(long amount, const char *descfmt, ...) 59 if (amount == 0) 66 printf("%-40s %10ld\n", buf, amount);
|
| /src/sys/arch/amigappc/amigappc/ |
| amiga_init.c | 110 chipmem_steal(long amount) 114 vaddr_t p = chipmem_end - amount; 128 alloc_z2mem(long amount) 131 return (alloc_chipmem(amount));
|
| /src/external/gpl2/texinfo/dist/info/ |
| display.h | 67 moving the lines AMOUNT lines. If AMOUNT is less than zero, the lines 71 extern void display_scroll_display (int start, int end, int amount);
|