Home
last modified time | relevance | path

Searched refs:NUM (Results 1 – 25 of 528) sorted by relevance

12345678910>>...22

/netbsd/external/gpl2/lvm2/dist/lib/report/
H A Dcolumns.h69 FIELD(LVS, lv, NUM, "LSize", size, 5, size64, "lv_size", "Size of LV in current units.")
70 FIELD(LVS, lv, NUM, "#Seg", lvid, 4, lvsegcount, "seg_count", "Number of segments in LV.")
89 FIELD(PVS, pv, NUM, "PSize", id, 5, pvsize, "pv_size", "Size of PV in current units.")
93 FIELD(PVS, pv, NUM, "PE", pe_count, 3, uint32, "pv_pe_count", "Total number of Physical Extents.")
102 FIELD(VGS, vg, NUM, "VSize", cmd, 5, vgsize, "vg_size", "Total size of VG in current units.")
110 FIELD(VGS, vg, NUM, "#PV", pv_count, 3, uint32, "pv_count", "Number of PVs.")
111 FIELD(VGS, vg, NUM, "#LV", cmd, 3, lvcount, "lv_count", "Number of LVs.")
112 FIELD(VGS, vg, NUM, "#SN", cmd, 3, snapcount, "snap_count", "Number of snapshots.")
120 FIELD(SEGS, seg, NUM, "#Str", area_count, 4, uint32, "stripes", "Number of stripes or mirror legs.")
129 FIELD(SEGS, seg, NUM, "SSize", list, 5, segsize, "seg_size", "Size of segment in current units.")
[all …]
/netbsd/external/bsd/libpcap/dist/
H A Dscanner.l426 icmptype { yylval->i = 0; return NUM; }
427 icmpcode { yylval->i = 1; return NUM; }
432 icmp-echo { yylval->i = 8; return NUM; }
439 icmp-ireq { yylval->i = 15; return NUM; }
473 tcpflags { yylval->i = 13; return NUM; }
474 tcp-fin { yylval->i = 0x01; return NUM; }
475 tcp-syn { yylval->i = 0x02; return NUM; }
476 tcp-rst { yylval->i = 0x04; return NUM; }
477 tcp-push { yylval->i = 0x08; return NUM; }
478 tcp-ack { yylval->i = 0x10; return NUM; }
[all …]
/netbsd/crypto/external/bsd/openssl.old/dist/crypto/bn/asm/
H A Dsparct4-mont.pl119 my $NUM=shift;
262 .word 0x81b02920+$NUM-1 ! montmul $NUM-1
324 .Lmdone_$NUM:
328 .Lmabort_$NUM:
345 .word 0x81b02940+$NUM-1 ! montsqr $NUM-1
349 .size bn_mul_mont_t4_$NUM, .-bn_mul_mont_t4_$NUM
574 .word 0x81b02940+$NUM-1 ! montsqr $NUM-1
585 .word 0x81b02920+$NUM-1 ! montmul $NUM-1
638 .Ldone_$NUM:
642 .Labort_$NUM:
[all …]
/netbsd/crypto/external/bsd/openssl/dist/crypto/bn/asm/
H A Dsparct4-mont.pl121 my $NUM=shift;
264 .word 0x81b02920+$NUM-1 ! montmul $NUM-1
326 .Lmdone_$NUM:
330 .Lmabort_$NUM:
347 .word 0x81b02940+$NUM-1 ! montsqr $NUM-1
351 .size bn_mul_mont_t4_$NUM, .-bn_mul_mont_t4_$NUM
576 .word 0x81b02940+$NUM-1 ! montsqr $NUM-1
587 .word 0x81b02920+$NUM-1 ! montmul $NUM-1
640 .Ldone_$NUM:
644 .Labort_$NUM:
[all …]
/netbsd/external/lgpl3/gmp/dist/mpq/
H A Ddiv.c45 op2_size = SIZ(NUM(op2)); in mpq_div()
60 MPN_PTR_SWAP (PTR(NUM(quot)), ALLOC(NUM(quot)), in mpq_div()
64 SIZ(NUM(quot)) = SIZ(DEN(quot)); in mpq_div()
69 SIZ(NUM(quot)) = - SIZ(DEN(quot)); in mpq_div()
76 op1_size = ABSIZ(NUM(op1)); in mpq_div()
82 SIZ(NUM(quot)) = 0; in mpq_div()
112 mpz_gcd (gcd1, NUM(op1), NUM(op2)); in mpq_div()
115 mpz_divexact_gcd (tmp1, NUM(op1), gcd1); in mpq_div()
118 mpz_mul (NUM(quot), tmp1, tmp2); in mpq_div()
120 mpz_divexact_gcd (tmp1, NUM(op2), gcd1); in mpq_div()
[all …]
H A Daors.c44 mp_size_t op1_num_size = ABSIZ(NUM(op1)); in mpq_aors()
46 mp_size_t op2_num_size = ABSIZ(NUM(op2)); in mpq_aors()
71 mpz_mul (tmp1, NUM(op1), t); in mpq_aors()
72 mpz_mul (t, NUM(op2), tmp2); in mpq_aors()
79 mpz_set (NUM(rop), t); in mpq_aors()
84 mpz_divexact_gcd (NUM(rop), t, gcd); in mpq_aors()
93 mpz_mul (tmp1, NUM(op1), DEN(op2)); in mpq_aors()
94 mpz_mul (tmp2, NUM(op2), DEN(op1)); in mpq_aors()
95 (*fun) (NUM(rop), tmp1, tmp2); in mpq_aors()
H A Dmul.c54 op1_num_size = ABSIZ(NUM(op1)); in mpq_mul()
56 op2_num_size = ABSIZ(NUM(op2)); in mpq_mul()
63 SIZ(NUM(prod)) = 0; in mpq_mul()
88 mpz_gcd (gcd1, NUM(op1), DEN(op2)); in mpq_mul()
89 mpz_gcd (gcd2, NUM(op2), DEN(op1)); in mpq_mul()
91 mpz_divexact_gcd (tmp1, NUM(op1), gcd1); in mpq_mul()
92 mpz_divexact_gcd (tmp2, NUM(op2), gcd2); in mpq_mul()
94 mpz_mul (NUM(prod), tmp1, tmp2); in mpq_mul()
H A Dswap.c36 MP_SIZE_T_SWAP (ALLOC(NUM(u)), ALLOC(NUM(v))); in mpq_swap()
38 MP_SIZE_T_SWAP (SIZ(NUM(u)), SIZ(NUM(v))); in mpq_swap()
40 MP_PTR_SWAP (PTR(NUM(u)), PTR(NUM(v))); in mpq_swap()
H A Dcanonicalize.c42 SIZ(NUM(op)) = -SIZ(NUM(op)); in mpq_canonicalize()
51 MPZ_TMP_INIT (gcd, 1 + MAX (ABSIZ(NUM(op)), in mpq_canonicalize()
54 mpz_gcd (gcd, NUM(op), DEN(op)); in mpq_canonicalize()
57 mpz_divexact_gcd (NUM(op), NUM(op), gcd); in mpq_canonicalize()
H A Dinv.c37 mp_size_t num_size = SIZ(NUM(src)); in mpq_inv()
49 SIZ(NUM(dest)) = den_size; in mpq_inv()
56 MP_PTR_SWAP (PTR(NUM(dest)), PTR(DEN(dest))); in mpq_inv()
57 MP_SIZE_T_SWAP (ALLOC(NUM(dest)), ALLOC(DEN(dest))); in mpq_inv()
64 dp = MPZ_NEWALLOC (NUM(dest), den_size); in mpq_inv()
68 MPN_COPY (dp, PTR(NUM(src)), num_size); in mpq_inv()
H A Dcmp_si.c46 if (SIZ(NUM(q)) >= 0) in _mpq_cmp_si()
53 SIZ(NUM(qabs)) = -SIZ(NUM(q)); in _mpq_cmp_si()
54 PTR(NUM(qabs)) = PTR(NUM(q)); in _mpq_cmp_si()
/netbsd/external/gpl3/gcc.old/dist/gcc/config/moxie/
H A Dmoxie.h378 #define HARD_REGNO_OK_FOR_BASE_P(NUM) \ argument
379 ((unsigned) (NUM) < FIRST_PSEUDO_REGISTER \
380 && (REGNO_REG_CLASS(NUM) == GENERAL_REGS \
381 || (NUM) == HARD_FRAME_POINTER_REGNUM))
386 #define REGNO_OK_FOR_BASE_P(NUM) \ argument
387 (HARD_REGNO_OK_FOR_BASE_P(NUM) \
388 || HARD_REGNO_OK_FOR_BASE_P(reg_renumber[(NUM)]))
390 #define REGNO_OK_FOR_BASE_P(NUM) \ argument
391 ((NUM) >= FIRST_PSEUDO_REGISTER || HARD_REGNO_OK_FOR_BASE_P(NUM))
396 #define REGNO_OK_FOR_INDEX_P(NUM) MOXIE_FP argument
/netbsd/external/gpl3/gcc/dist/gcc/config/moxie/
H A Dmoxie.h378 #define HARD_REGNO_OK_FOR_BASE_P(NUM) \ argument
379 ((unsigned) (NUM) < FIRST_PSEUDO_REGISTER \
380 && (REGNO_REG_CLASS(NUM) == GENERAL_REGS \
381 || (NUM) == HARD_FRAME_POINTER_REGNUM))
386 #define REGNO_OK_FOR_BASE_P(NUM) \ argument
387 (HARD_REGNO_OK_FOR_BASE_P(NUM) \
388 || HARD_REGNO_OK_FOR_BASE_P(reg_renumber[(NUM)]))
390 #define REGNO_OK_FOR_BASE_P(NUM) \ argument
391 ((NUM) >= FIRST_PSEUDO_REGISTER || HARD_REGNO_OK_FOR_BASE_P(NUM))
396 #define REGNO_OK_FOR_INDEX_P(NUM) MOXIE_FP argument
/netbsd/external/lgpl3/gmp/dist/tests/mpq/
H A Dt-cmp_ui.c37 mpz_mul_ui (ai, NUM (a), bd); in ref_mpq_cmp_ui()
70 mpz_random2 (NUM (a), size); in main()
78 mpz_random2 (NUM (b), (mp_size_t) 1); in main()
79 mpz_mod_ui (NUM (b), NUM (b), ~(unsigned long int) 0); in main()
80 mpz_add_ui (NUM (b), NUM (b), 1); in main()
101 bn = mpz_get_ui (NUM (b)); in main()
/netbsd/external/gpl3/gdb/dist/gas/
H A Ditbl-parse.y289 %token DREG CREG GREG IMMED ADDR INSN NUM ID NL PNUM
291 %type <num> number NUM ftype regtype pnum PNUM
361 NUM '|' flagexpr
369 | NUM
388 ':' NUM '-' NUM
436 NUM
444 NUM
/netbsd/external/gpl3/binutils/dist/gas/
H A Ditbl-parse.y289 %token DREG CREG GREG IMMED ADDR INSN NUM ID NL PNUM
291 %type <num> number NUM ftype regtype pnum PNUM
361 NUM '|' flagexpr
369 | NUM
388 ':' NUM '-' NUM
436 NUM
444 NUM
/netbsd/external/gpl3/binutils.old/dist/gas/
H A Ditbl-parse.y289 %token DREG CREG GREG IMMED ADDR INSN NUM ID NL PNUM
291 %type <num> number NUM ftype regtype pnum PNUM
361 NUM '|' flagexpr
369 | NUM
388 ':' NUM '-' NUM
436 NUM
444 NUM
/netbsd/external/gpl3/gdb.old/dist/gas/
H A Ditbl-parse.y289 %token DREG CREG GREG IMMED ADDR INSN NUM ID NL PNUM
291 %type <num> number NUM ftype regtype pnum PNUM
361 NUM '|' flagexpr
369 | NUM
388 ':' NUM '-' NUM
436 NUM
444 NUM
/netbsd/external/gpl3/gcc.old/dist/gcc/config/ft32/
H A Dft32.h419 #define HARD_REGNO_OK_FOR_BASE_P(NUM) \ argument
420 ((unsigned) (NUM) < FIRST_PSEUDO_REGISTER \
421 && (REGNO_REG_CLASS(NUM) == GENERAL_REGS \
422 || (NUM) == HARD_FRAME_POINTER_REGNUM))
427 #define REGNO_OK_FOR_BASE_P(NUM) \ argument
428 (HARD_REGNO_OK_FOR_BASE_P(NUM) \
429 || HARD_REGNO_OK_FOR_BASE_P(reg_renumber[(NUM)]))
431 #define REGNO_OK_FOR_BASE_P(NUM) \ argument
432 ((NUM) >= FIRST_PSEUDO_REGISTER || HARD_REGNO_OK_FOR_BASE_P(NUM))
437 #define REGNO_OK_FOR_INDEX_P(NUM) FT32_FP argument
/netbsd/external/gpl3/gcc/dist/gcc/config/ft32/
H A Dft32.h419 #define HARD_REGNO_OK_FOR_BASE_P(NUM) \ argument
420 ((unsigned) (NUM) < FIRST_PSEUDO_REGISTER \
421 && (REGNO_REG_CLASS(NUM) == GENERAL_REGS \
422 || (NUM) == HARD_FRAME_POINTER_REGNUM))
427 #define REGNO_OK_FOR_BASE_P(NUM) \ argument
428 (HARD_REGNO_OK_FOR_BASE_P(NUM) \
429 || HARD_REGNO_OK_FOR_BASE_P(reg_renumber[(NUM)]))
431 #define REGNO_OK_FOR_BASE_P(NUM) \ argument
432 ((NUM) >= FIRST_PSEUDO_REGISTER || HARD_REGNO_OK_FOR_BASE_P(NUM))
437 #define REGNO_OK_FOR_INDEX_P(NUM) FT32_FP argument
/netbsd/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/
H A Dschedlock.exp31 set NUM 2
44 global NUM
47 for {set i 1} {[expr $i < $NUM]} {incr i} {
57 for {set i 1} {[expr $i <= $NUM]} {incr i} {
193 for {set i 0} {[expr $i < $NUM]} {set i [expr $i + 1]} {
201 fail "all threads alive ($bad/$NUM did not run)"
213 global NUM
235 for {set i 0} {$i < $NUM} {incr i} {
275 global NUM
H A Dwatchthreads.c27 #define NUM 5 macro
29 unsigned int args[NUM+1];
35 pthread_t threads[NUM]; in main()
44 for (i = 0; i < NUM; i++) in main()
51 for (i = 0; i < NUM; i++) in main()
H A Dthreadapply.c27 #define NUM 5 macro
29 unsigned int args[NUM+1];
34 pthread_t threads[NUM]; in main()
38 for (i = 0; i < NUM; i++) in main()
51 for (i = 0; i < NUM; i++) in main()
/netbsd/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/
H A Dschedlock.exp31 set NUM 2
44 global NUM
47 for {set i 1} {[expr $i < $NUM]} {incr i} {
57 for {set i 1} {[expr $i <= $NUM]} {incr i} {
193 for {set i 0} {[expr $i < $NUM]} {set i [expr $i + 1]} {
201 fail "all threads alive ($bad/$NUM did not run)"
213 global NUM
235 for {set i 0} {$i < $NUM} {incr i} {
275 global NUM
H A Dwatchthreads.c27 #define NUM 5 macro
29 unsigned int args[NUM+1];
35 pthread_t threads[NUM]; in main()
44 for (i = 0; i < NUM; i++) in main()
51 for (i = 0; i < NUM; i++) in main()

12345678910>>...22