Searched refs:amount (Results 1 - 25 of 167) sorted by relevance

1234567

/netbsd-6-1-5-RELEASE/sys/arch/hppa/spmath/
H A Dhppa.h43 /* 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...]
/netbsd-6-1-5-RELEASE/games/hack/
H A Dhack.wield.c131 chwepon(struct obj *otmp, int amount) argument
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...]
H A Ddef.gold.h69 long amount; member in struct:gold
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/lns/
H A Dlns-common-1-alt.d13 Advance PC by fixed size amount .* to .*
17 Advance PC by fixed size amount .* to .*
22 Advance PC by fixed size amount .* to .*
27 Advance PC by fixed size amount .* to .*
31 Advance PC by fixed size amount .* to .*
35 Advance PC by fixed size amount .* to .*
39 Advance PC by fixed size amount .* to .*
41 Advance PC by fixed size amount .* to .*
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/22_locale/money_put/put/char/
H A D12971.cc34 long double amount = 10.8L; local
40 iterator_type os_it01 = mon_put.put(oss.rdbuf(), true, oss, ' ', amount);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/22_locale/money_put/put/wchar_t/
H A D12971.cc34 long double amount = 10.8L; local
41 iterator_type os_it01 = mon_put.put(oss.rdbuf(), true, oss, L' ', amount);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/22_locale/money_put/put/char/
H A D12971.cc35 long double amount = 10.8L; local
41 iterator_type os_it01 = mon_put.put(oss.rdbuf(), true, oss, ' ', amount);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/22_locale/money_put/put/wchar_t/
H A D12971.cc35 long double amount = 10.8L; local
42 iterator_type os_it01 = mon_put.put(oss.rdbuf(), true, oss, L' ', amount);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.target/mips/
H A Dtimode-1.c20 volatile int amount = 4; variable
51 result = g << amount;
55 result = g >> amount;
59 result = (int128_t) g >> amount;
H A Dtimode-2.c21 volatile int amount = 4; variable
52 result = g << amount;
56 result = g >> amount;
60 result = (int128_t) g >> amount;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libgcc/config/libbid/
H A Dbid128_quantize.c33 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...]
H A Dbid32_to_bid128.c83 int exponent_x, extra_digits, amount, bin_expon_cx, uf_check = 0;
100 amount = recip_scale[27] - 64;
101 res = ((CX.w[1] >> 32) & 0xfc000000) | (Qh.w[1] >> amount);
177 amount = recip_scale[extra_digits];
179 if (amount >= 64) {
180 CX.w[0] = Qh.w[1] >> (amount - 64);
183 __shr_128 (CX, Qh, amount);
194 __shl_128_long (Qh1, Qh, (128 - amount));
209 __shl_128_long (Qh1, Qh, (128 - amount));
235 __shr_128_long (Qh, Qh1, (128 - amount));
[all...]
H A Dbid64_to_bid128.c81 int exponent_x, extra_digits, amount, bin_expon_cx;
98 amount = recip_scale[18];
99 __shr_128 (Tmp, Qh, amount);
175 amount = recip_scale[extra_digits];
177 if (amount >= 64) {
178 CX.w[0] = Qh.w[1] >> (amount - 64);
181 __shr_128 (CX, Qh, amount);
192 __shl_128_long (Qh1, Qh, (128 - amount));
206 __shl_128_long (Qh1, Qh, (128 - amount));
232 __shr_128_long (Qh, Qh1, (128 - amount));
[all...]
H A Dbid32_to_bid64.c83 int exponent_x, bin_expon_cx, extra_digits, rmode = 0, amount;
154 amount = short_recip_scale[extra_digits];
156 coefficient_x = Q.w[1] >> amount;
167 remainder_h = Q.w[1] << (64 - amount);
179 remainder_h = Q.w[1] << (64 - amount);
198 if ((remainder_h >> (64 - amount)) + carry >=
199 (((UINT64) 1) << amount))
H A Dbid64_quantize.c50 int exponent_x, exponent_y, digits_x, extra_digits, amount, amount2; local
152 amount = short_recip_scale[extra_digits];
153 C64 = CT.w[1] >> amount;
165 amount2 = 64 - amount;
181 remainder_h = CT.w[1] << (64 - amount);
200 if ((remainder_h >> (64 - amount)) + carry >=
201 (((UINT64) 1) << amount))
/netbsd-6-1-5-RELEASE/external/public-domain/xz/dist/src/liblzma/lz/
H A Dlz_encoder.h130 /// Extra amount of data to keep available before the "actual"
137 /// Extra amount of data to keep available after the "actual"
177 // amount of extra buffer needed after dict_size becomes
268 mf_skip(lzma_mf *mf, uint32_t amount) argument
270 if (amount != 0) {
271 mf->skip(mf, amount);
272 mf->read_ahead += amount;
314 extern void lzma_mf_hc3_skip(lzma_mf *dict, uint32_t amount);
317 extern void lzma_mf_hc4_skip(lzma_mf *dict, uint32_t amount);
320 extern void lzma_mf_bt2_skip(lzma_mf *dict, uint32_t amount);
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/h8300/
H A Dgenmova.sh81 # Loop over the shift amount.
102 mult) amount=$mult;;
103 ashift) amount=$shift;;
114 (const_int $amount))
134 (const_int $amount)))]
143 (const_int $amount))
173 (const_int $amount))
183 (const_int $amount))
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/config/h8300/
H A Dgenmova.sh46 # Loop over the shift amount.
67 mult) amount=$mult;;
68 ashift) amount=$shift;;
79 (const_int $amount))
99 (const_int $amount)))]
108 (const_int $amount))
138 (const_int $amount))
148 (const_int $amount))
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/config/arm/
H A Daout.h245 register int amount = 1 << (POWER); \
247 if (amount == 2) \
249 else if (amount != 1) \
250 fprintf (STREAM, "\t.align\t%d\n", amount - 4); \
/netbsd-6-1-5-RELEASE/gnu/dist/texinfo/info/
H A Ddisplay.h71 extern void display_scroll_display (int start, int end, int amount);
/netbsd-6-1-5-RELEASE/games/trek/
H A Dscore.c50 static void scoreitem(long amount, const char *descfmt, ...)
54 scoreitem(long amount, const char *descfmt, ...) argument
59 if (amount == 0)
66 printf("%-40s %10ld\n", buf, amount);
/netbsd-6-1-5-RELEASE/sys/arch/amigappc/amigappc/
H A Damiga_init.c110 chipmem_steal(long amount) argument
114 vaddr_t p = chipmem_end - amount;
128 alloc_z2mem(long amount) argument
131 return (alloc_chipmem(amount));
/netbsd-6-1-5-RELEASE/sys/arch/arm/omap/
H A Domap_reg.h31 #error Specify the amount of SDRAM in megabytes with the MEMSIZE option.
/netbsd-6-1-5-RELEASE/bin/sh/
H A Dmemalloc.h74 #define STADJUST(amount, p) (p += (amount), sstrnleft -= (amount))
/netbsd-6-1-5-RELEASE/sys/arch/x68k/stand/boot/
H A Dne.c243 ne2000_readmem(int src, uint8_t *dst, size_t amount) argument
251 if (amount & 1)
252 ++amount;
255 NIC_OUTB(ED_P0_RBCR0, amount);
256 NIC_OUTB(ED_P0_RBCR1, amount >> 8);
265 for (i = 0; i < amount; i += 2, dst += 2)
268 for (i = 0; i < amount; i++)

Completed in 308 milliseconds

1234567