Home
last modified time | relevance | path

Searched refs:abits (Results 1 – 25 of 407) sorted by relevance

12345678910>>...17

/dports/biology/sra-tools/sra-tools-2.11.0/ncbi-vdb/libs/klib/
H A Dunpack.c249 uint32_t abits; in Unpack8() local
272 for ( abits = 0, acc = 0; ( ssize & 3 ) != 0; abits += 8 ) in Unpack8()
286 abits = 32; in Unpack8()
439 uint32_t abits; in Unpack16() local
448 for ( abits = 0, acc = 0; ( ssize & 3 ) != 0; abits += 8 ) in Unpack16()
462 abits = 32; in Unpack16()
509 uint32_t abits; in Unpack32() local
518 for ( abits = 0, acc = 0; ( ssize & 3 ) != 0; abits += 8 ) in Unpack32()
532 abits = 32; in Unpack32()
588 for ( abits = 0, acc = 0; ( ssize & 3 ) != 0; abits += 8 ) in Unpack64a()
[all …]
H A Dpack.c124 uint32_t abits; in Pack8() local
203 abits = ( abits + 7 ) >> 3; in Pack8()
204 for ( d <<= 2; abits != 0; -- abits, out >>= 8, ++ d ) in Pack8()
249 abits = ( abits + 7 ) >> 3; in Pack16()
250 for ( d <<= 2; abits != 0; -- abits, out >>= 8, ++ d ) in Pack16()
295 abits = ( abits + 7 ) >> 3; in Pack32()
296 for ( d <<= 2; abits != 0; -- abits, out >>= 8, ++ d ) in Pack32()
342 abits = ( abits + 7 ) >> 3; in Pack64a()
343 for ( d <<= 2; abits != 0; -- abits, out >>= 8, ++ d ) in Pack64a()
394 abits = ( abits + 7 ) & ~ 7; in Pack64b()
[all …]
/dports/biology/ncbi-vdb/ncbi-vdb-2.11.0/libs/klib/
H A Dunpack.c249 uint32_t abits; in Unpack8() local
272 for ( abits = 0, acc = 0; ( ssize & 3 ) != 0; abits += 8 ) in Unpack8()
286 abits = 32; in Unpack8()
439 uint32_t abits; in Unpack16() local
448 for ( abits = 0, acc = 0; ( ssize & 3 ) != 0; abits += 8 ) in Unpack16()
462 abits = 32; in Unpack16()
509 uint32_t abits; in Unpack32() local
518 for ( abits = 0, acc = 0; ( ssize & 3 ) != 0; abits += 8 ) in Unpack32()
532 abits = 32; in Unpack32()
588 for ( abits = 0, acc = 0; ( ssize & 3 ) != 0; abits += 8 ) in Unpack64a()
[all …]
H A Dpack.c124 uint32_t abits; in Pack8() local
203 abits = ( abits + 7 ) >> 3; in Pack8()
204 for ( d <<= 2; abits != 0; -- abits, out >>= 8, ++ d ) in Pack8()
249 abits = ( abits + 7 ) >> 3; in Pack16()
250 for ( d <<= 2; abits != 0; -- abits, out >>= 8, ++ d ) in Pack16()
295 abits = ( abits + 7 ) >> 3; in Pack32()
296 for ( d <<= 2; abits != 0; -- abits, out >>= 8, ++ d ) in Pack32()
342 abits = ( abits + 7 ) >> 3; in Pack64a()
343 for ( d <<= 2; abits != 0; -- abits, out >>= 8, ++ d ) in Pack64a()
394 abits = ( abits + 7 ) & ~ 7; in Pack64b()
[all …]
/dports/math/mingw32-libgmp/gmp-6.0.0/mini-gmp/tests/
H A Dhex-random.c101 unsigned long abits; in hex_random_op2() local
109 mpz_rrandomb (a, state, abits); in hex_random_op2()
136 unsigned long abits, bbits; in hex_random_op3() local
215 unsigned long abits, bbits; in hex_random_op4() local
269 abits = bbits + qbits; in hex_random_op4()
270 if (abits > 30) in hex_random_op4()
271 abits -= 30; in hex_random_op4()
273 abits = 0; in hex_random_op4()
315 unsigned long abits, bbits; in hex_random_bit_op() local
380 unsigned long abits, bbits; in hex_random_scan_op() local
[all …]
/dports/games/libretro-mame2003/mame2003-libretro-4358db4/src/
H A Dmame-memory.c107 int abits; /* address bits */ member
1139 data->abits = abits; in init_memport()
2403 GENERATE_HANDLERS_8BIT(mem, abits) \
2404 SETOPBASE(cpu_setopbase##abits, abits, 0, rmemhandler8)
2408 SETOPBASE(cpu_setopbase##abits##bew, abits, 1, rmemhandler16)
2412 SETOPBASE(cpu_setopbase##abits##lew, abits, 1, rmemhandler16)
2416 SETOPBASE(cpu_setopbase##abits##bedw, abits, 2, rmemhandler32)
2420 SETOPBASE(cpu_setopbase##abits##ledw, abits, 2, rmemhandler32)
2429 GENERATE_HANDLERS_8BIT(port, abits)
2910 if (cpudata[cpunum].mem.abits) in mem_dump()
[all …]
H A Dmemory.h674 #define DECLARE_MEM_HANDLERS_8BIT(abits) \ argument
675 DECLARE_HANDLERS_8BIT(mem, abits) \
679 DECLARE_HANDLERS_16BIT_BE(mem, abits) \
683 DECLARE_HANDLERS_16BIT_LE(mem, abits) \
687 DECLARE_HANDLERS_32BIT_BE(mem, abits) \
691 DECLARE_HANDLERS_32BIT_LE(mem, abits) \
696 DECLARE_HANDLERS_8BIT(port, abits)
699 DECLARE_HANDLERS_16BIT_BE(port, abits)
702 DECLARE_HANDLERS_16BIT_LE(port, abits)
705 DECLARE_HANDLERS_32BIT_BE(port, abits)
[all …]
/dports/games/libretro-mame2003_plus/mame2003-plus-libretro-17e9889/src/
H A Dmame-memory.c107 int abits; /* address bits */ member
1139 data->abits = abits; in init_memport()
2403 GENERATE_HANDLERS_8BIT(mem, abits) \
2404 SETOPBASE(cpu_setopbase##abits, abits, 0, rmemhandler8)
2408 SETOPBASE(cpu_setopbase##abits##bew, abits, 1, rmemhandler16)
2412 SETOPBASE(cpu_setopbase##abits##lew, abits, 1, rmemhandler16)
2416 SETOPBASE(cpu_setopbase##abits##bedw, abits, 2, rmemhandler32)
2420 SETOPBASE(cpu_setopbase##abits##ledw, abits, 2, rmemhandler32)
2429 GENERATE_HANDLERS_8BIT(port, abits)
2910 if (cpudata[cpunum].mem.abits) in mem_dump()
[all …]
H A Dmemory.h674 #define DECLARE_MEM_HANDLERS_8BIT(abits) \ argument
675 DECLARE_HANDLERS_8BIT(mem, abits) \
679 DECLARE_HANDLERS_16BIT_BE(mem, abits) \
683 DECLARE_HANDLERS_16BIT_LE(mem, abits) \
687 DECLARE_HANDLERS_32BIT_BE(mem, abits) \
691 DECLARE_HANDLERS_32BIT_LE(mem, abits) \
696 DECLARE_HANDLERS_8BIT(port, abits)
699 DECLARE_HANDLERS_16BIT_BE(port, abits)
702 DECLARE_HANDLERS_16BIT_LE(port, abits)
705 DECLARE_HANDLERS_32BIT_BE(port, abits)
[all …]
/dports/math/gmp/gmp-6.2.1/mini-gmp/tests/
H A Dhex-random.c163 unsigned long abits; in hex_random_op2() local
198 unsigned long abits, bbits; in hex_random_op3() local
277 unsigned long abits, bbits; in hex_random_op4() local
331 abits = bbits + qbits; in hex_random_op4()
332 if (abits > 30) in hex_random_op4()
333 abits -= 30; in hex_random_op4()
335 abits = 0; in hex_random_op4()
377 unsigned long abits, bbits; in hex_random_bit_op() local
442 unsigned long abits, bbits; in hex_random_scan_op() local
479 unsigned long abits; in hex_random_str_op() local
[all …]
/dports/math/kalker/gmp-mpfr-sys-21966f4bfb56c87d407eb14c72e92ef4e55856aa/gmp-6.2.1-c/mini-gmp/tests/
H A Dhex-random.c163 unsigned long abits; in hex_random_op2() local
198 unsigned long abits, bbits; in hex_random_op3() local
277 unsigned long abits, bbits; in hex_random_op4() local
331 abits = bbits + qbits; in hex_random_op4()
332 if (abits > 30) in hex_random_op4()
333 abits -= 30; in hex_random_op4()
335 abits = 0; in hex_random_op4()
377 unsigned long abits, bbits; in hex_random_bit_op() local
442 unsigned long abits, bbits; in hex_random_scan_op() local
479 unsigned long abits; in hex_random_str_op() local
[all …]
/dports/math/gap/gap-4.11.0/extern/gmp/mini-gmp/tests/
H A Dhex-random.c150 unsigned long abits; in hex_random_op2() local
158 mpz_rrandomb (a, state, abits); in hex_random_op2()
185 unsigned long abits, bbits; in hex_random_op3() local
264 unsigned long abits, bbits; in hex_random_op4() local
318 abits = bbits + qbits; in hex_random_op4()
319 if (abits > 30) in hex_random_op4()
320 abits -= 30; in hex_random_op4()
322 abits = 0; in hex_random_op4()
364 unsigned long abits, bbits; in hex_random_bit_op() local
429 unsigned long abits, bbits; in hex_random_scan_op() local
[all …]
/dports/math/arb/arb-2.21.1/acb_hypgeom/
H A Dpfq_series_sum.c21 slong abits, zbits, i, j, cb; in acb_hypgeom_pfq_series_sum() local
30 abits = 0; in acb_hypgeom_pfq_series_sum()
38 abits = FLINT_MAX(abits, cb); in acb_hypgeom_pfq_series_sum()
47 abits = FLINT_MAX(abits, cb); in acb_hypgeom_pfq_series_sum()
59 if (len <= 5 && prec > 900 && abits < prec * 0.1 && zbits > prec * 0.1) in acb_hypgeom_pfq_series_sum()
68 if ((abits < prec * 0.1 && zbits < prec * 0.1 && prec > 600) || len > 20) in acb_hypgeom_pfq_series_sum()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/pixman/
H A Dpixman-arm-neon-asm.h76 .macro pixldst1 op, elem_size, reg1, mem_operand, abits
77 .if abits > 0
78 op&.&elem_size {d&reg1}, [&mem_operand&, :&abits&]!
85 .if abits > 0
93 .if abits > 0
127 pixldst0 op, 8, %(basereg+0), 4, mem_operand, abits
128 pixldst0 op, 8, %(basereg+0), 5, mem_operand, abits
129 pixldst0 op, 8, %(basereg+0), 6, mem_operand, abits
140 pixldst0 op, 8, %(basereg+0), 1, mem_operand, abits
146 .macro pixld numpix, bpp, basereg, mem_operand, abits=0
[all …]
/dports/databases/qt5-sqldrivers-sqlite3/kde-qtbase-5.15.2p263/src/3rdparty/pixman/
H A Dpixman-arm-neon-asm.h76 .macro pixldst1 op, elem_size, reg1, mem_operand, abits
77 .if abits > 0
78 op&.&elem_size {d&reg1}, [&mem_operand&, :&abits&]!
85 .if abits > 0
93 .if abits > 0
127 pixldst0 op, 8, %(basereg+0), 4, mem_operand, abits
128 pixldst0 op, 8, %(basereg+0), 5, mem_operand, abits
129 pixldst0 op, 8, %(basereg+0), 6, mem_operand, abits
140 pixldst0 op, 8, %(basereg+0), 1, mem_operand, abits
146 .macro pixld numpix, bpp, basereg, mem_operand, abits=0
[all …]
/dports/databases/qt5-sqldrivers-sqlite2/kde-qtbase-5.15.2p263/src/3rdparty/pixman/
H A Dpixman-arm-neon-asm.h76 .macro pixldst1 op, elem_size, reg1, mem_operand, abits
77 .if abits > 0
78 op&.&elem_size {d&reg1}, [&mem_operand&, :&abits&]!
85 .if abits > 0
93 .if abits > 0
127 pixldst0 op, 8, %(basereg+0), 4, mem_operand, abits
128 pixldst0 op, 8, %(basereg+0), 5, mem_operand, abits
129 pixldst0 op, 8, %(basereg+0), 6, mem_operand, abits
140 pixldst0 op, 8, %(basereg+0), 1, mem_operand, abits
146 .macro pixld numpix, bpp, basereg, mem_operand, abits=0
[all …]
/dports/databases/qt5-sqldrivers-tds/kde-qtbase-5.15.2p263/src/3rdparty/pixman/
H A Dpixman-arm-neon-asm.h76 .macro pixldst1 op, elem_size, reg1, mem_operand, abits
77 .if abits > 0
78 op&.&elem_size {d&reg1}, [&mem_operand&, :&abits&]!
85 .if abits > 0
93 .if abits > 0
127 pixldst0 op, 8, %(basereg+0), 4, mem_operand, abits
128 pixldst0 op, 8, %(basereg+0), 5, mem_operand, abits
129 pixldst0 op, 8, %(basereg+0), 6, mem_operand, abits
140 pixldst0 op, 8, %(basereg+0), 1, mem_operand, abits
146 .macro pixld numpix, bpp, basereg, mem_operand, abits=0
[all …]
/dports/devel/qt5-qmake/kde-qtbase-5.15.2p263/src/3rdparty/pixman/
H A Dpixman-arm-neon-asm.h76 .macro pixldst1 op, elem_size, reg1, mem_operand, abits
77 .if abits > 0
78 op&.&elem_size {d&reg1}, [&mem_operand&, :&abits&]!
85 .if abits > 0
93 .if abits > 0
127 pixldst0 op, 8, %(basereg+0), 4, mem_operand, abits
128 pixldst0 op, 8, %(basereg+0), 5, mem_operand, abits
129 pixldst0 op, 8, %(basereg+0), 6, mem_operand, abits
140 pixldst0 op, 8, %(basereg+0), 1, mem_operand, abits
146 .macro pixld numpix, bpp, basereg, mem_operand, abits=0
[all …]
/dports/databases/qt5-sqldrivers-odbc/kde-qtbase-5.15.2p263/src/3rdparty/pixman/
H A Dpixman-arm-neon-asm.h76 .macro pixldst1 op, elem_size, reg1, mem_operand, abits
77 .if abits > 0
78 op&.&elem_size {d&reg1}, [&mem_operand&, :&abits&]!
85 .if abits > 0
93 .if abits > 0
127 pixldst0 op, 8, %(basereg+0), 4, mem_operand, abits
128 pixldst0 op, 8, %(basereg+0), 5, mem_operand, abits
129 pixldst0 op, 8, %(basereg+0), 6, mem_operand, abits
140 pixldst0 op, 8, %(basereg+0), 1, mem_operand, abits
146 .macro pixld numpix, bpp, basereg, mem_operand, abits=0
[all …]
/dports/databases/qt5-sqldrivers-mysql/kde-qtbase-5.15.2p263/src/3rdparty/pixman/
H A Dpixman-arm-neon-asm.h76 .macro pixldst1 op, elem_size, reg1, mem_operand, abits
77 .if abits > 0
78 op&.&elem_size {d&reg1}, [&mem_operand&, :&abits&]!
85 .if abits > 0
93 .if abits > 0
127 pixldst0 op, 8, %(basereg+0), 4, mem_operand, abits
128 pixldst0 op, 8, %(basereg+0), 5, mem_operand, abits
129 pixldst0 op, 8, %(basereg+0), 6, mem_operand, abits
140 pixldst0 op, 8, %(basereg+0), 1, mem_operand, abits
146 .macro pixld numpix, bpp, basereg, mem_operand, abits=0
[all …]
/dports/databases/qt5-sql/kde-qtbase-5.15.2p263/src/3rdparty/pixman/
H A Dpixman-arm-neon-asm.h76 .macro pixldst1 op, elem_size, reg1, mem_operand, abits
77 .if abits > 0
78 op&.&elem_size {d&reg1}, [&mem_operand&, :&abits&]!
85 .if abits > 0
93 .if abits > 0
127 pixldst0 op, 8, %(basereg+0), 4, mem_operand, abits
128 pixldst0 op, 8, %(basereg+0), 5, mem_operand, abits
129 pixldst0 op, 8, %(basereg+0), 6, mem_operand, abits
140 pixldst0 op, 8, %(basereg+0), 1, mem_operand, abits
146 .macro pixld numpix, bpp, basereg, mem_operand, abits=0
[all …]
/dports/databases/qt5-sqldrivers-pgsql/kde-qtbase-5.15.2p263/src/3rdparty/pixman/
H A Dpixman-arm-neon-asm.h76 .macro pixldst1 op, elem_size, reg1, mem_operand, abits
77 .if abits > 0
78 op&.&elem_size {d&reg1}, [&mem_operand&, :&abits&]!
85 .if abits > 0
93 .if abits > 0
127 pixldst0 op, 8, %(basereg+0), 4, mem_operand, abits
128 pixldst0 op, 8, %(basereg+0), 5, mem_operand, abits
129 pixldst0 op, 8, %(basereg+0), 6, mem_operand, abits
140 pixldst0 op, 8, %(basereg+0), 1, mem_operand, abits
146 .macro pixld numpix, bpp, basereg, mem_operand, abits=0
[all …]
/dports/databases/qt5-sqldrivers-ibase/kde-qtbase-5.15.2p263/src/3rdparty/pixman/
H A Dpixman-arm-neon-asm.h76 .macro pixldst1 op, elem_size, reg1, mem_operand, abits
77 .if abits > 0
78 op&.&elem_size {d&reg1}, [&mem_operand&, :&abits&]!
85 .if abits > 0
93 .if abits > 0
127 pixldst0 op, 8, %(basereg+0), 4, mem_operand, abits
128 pixldst0 op, 8, %(basereg+0), 5, mem_operand, abits
129 pixldst0 op, 8, %(basereg+0), 6, mem_operand, abits
140 pixldst0 op, 8, %(basereg+0), 1, mem_operand, abits
146 .macro pixld numpix, bpp, basereg, mem_operand, abits=0
[all …]
/dports/net/qt5-network/kde-qtbase-5.15.2p263/src/3rdparty/pixman/
H A Dpixman-arm-neon-asm.h76 .macro pixldst1 op, elem_size, reg1, mem_operand, abits
77 .if abits > 0
78 op&.&elem_size {d&reg1}, [&mem_operand&, :&abits&]!
85 .if abits > 0
93 .if abits > 0
127 pixldst0 op, 8, %(basereg+0), 4, mem_operand, abits
128 pixldst0 op, 8, %(basereg+0), 5, mem_operand, abits
129 pixldst0 op, 8, %(basereg+0), 6, mem_operand, abits
140 pixldst0 op, 8, %(basereg+0), 1, mem_operand, abits
146 .macro pixld numpix, bpp, basereg, mem_operand, abits=0
[all …]
/dports/textproc/qt5-xml/kde-qtbase-5.15.2p263/src/3rdparty/pixman/
H A Dpixman-arm-neon-asm.h76 .macro pixldst1 op, elem_size, reg1, mem_operand, abits
77 .if abits > 0
78 op&.&elem_size {d&reg1}, [&mem_operand&, :&abits&]!
85 .if abits > 0
93 .if abits > 0
127 pixldst0 op, 8, %(basereg+0), 4, mem_operand, abits
128 pixldst0 op, 8, %(basereg+0), 5, mem_operand, abits
129 pixldst0 op, 8, %(basereg+0), 6, mem_operand, abits
140 pixldst0 op, 8, %(basereg+0), 1, mem_operand, abits
146 .macro pixld numpix, bpp, basereg, mem_operand, abits=0
[all …]

12345678910>>...17