HomeSort by: relevance | last modified time | path
    Searched refs:NUM (Results 1 - 25 of 286) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl2/lvm2/dist/lib/report/
columns.h 31 * 3. Field type. This must be either 'STR' or 'NUM'.
63 FIELD(LVS, lv, NUM, "Maj", major, 3, int32, "lv_major", "Persistent major number or -1 if not persistent.")
64 FIELD(LVS, lv, NUM, "Min", minor, 3, int32, "lv_minor", "Persistent minor number or -1 if not persistent.")
65 FIELD(LVS, lv, NUM, "Rahead", lvid, 6, lvreadahead, "lv_read_ahead", "Read ahead setting in current units.")
68 FIELD(LVS, lv, NUM, "KRahead", lvid, 7, lvkreadahead, "lv_kernel_read_ahead", "Currently-in-use read ahead setting in current units.")
69 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.")
72 FIELD(LVS, lv, NUM, "OSize", lvid, 5, originsize, "origin_size", "For snapshots, the size of the origin device of this LV.")
73 FIELD(LVS, lv, NUM, "Snap%", lvid, 6, snpercent, "snap_percent", "For snapshots, the percentage full if LV is active.")
74 FIELD(LVS, lv, NUM, "Copy%", lvid, 6, copypercent, "copy_percent", "For mirrors and pvmove, current percentage in-syn (…)
    [all...]
  /src/external/lgpl3/gmp/dist/mpq/
clear.c 37 if (ALLOC (NUM(x)))
38 __GMP_FREE_FUNC_LIMBS (PTR(NUM(x)), ALLOC(NUM(x)));
init.c 38 ALLOC(NUM(x)) = 0;
39 PTR(NUM(x)) = (mp_ptr) &dummy_limb;
40 SIZ(NUM(x)) = 0;
swap.c 36 MP_SIZE_T_SWAP (ALLOC(NUM(u)), ALLOC(NUM(v)));
38 MP_SIZE_T_SWAP (SIZ(NUM(u)), SIZ(NUM(v)));
40 MP_PTR_SWAP (PTR(NUM(u)), PTR(NUM(v)));
cmp_si.c 46 if (SIZ(NUM(q)) >= 0)
53 SIZ(NUM(qabs)) = -SIZ(NUM(q));
54 PTR(NUM(qabs)) = PTR(NUM(q));
canonicalize.c 42 SIZ(NUM(op)) = -SIZ(NUM(op));
51 MPZ_TMP_INIT (gcd, 1 + MAX (ABSIZ(NUM(op)),
54 mpz_gcd (gcd, NUM(op), DEN(op));
57 mpz_divexact_gcd (NUM(op), NUM(op), gcd);
inv.c 37 mp_size_t num_size = SIZ(NUM(src));
49 SIZ(NUM(dest)) = den_size;
56 MP_PTR_SWAP (PTR(NUM(dest)), PTR(DEN(dest)));
57 MP_SIZE_T_SWAP (ALLOC(NUM(dest)), ALLOC(DEN(dest)));
64 dp = MPZ_NEWALLOC (NUM(dest), den_size);
68 MPN_COPY (dp, PTR(NUM(src)), num_size);
clears.c 43 if (ALLOC (NUM(x)))
44 __GMP_FREE_FUNC_LIMBS (PTR(NUM(x)), ALLOC(NUM(x)));
set_si.c 35 mpq_set_si (mpq_t dest, signed long int num, unsigned long int den)
39 if (num == 0) /* Canonicalize 0/d to 0/1. */
41 mpz_set_si (mpq_numref (dest), num); local
46 if (num == 0)
50 SIZ(NUM(dest)) = 0;
54 MPZ_NEWALLOC (NUM(dest), 1)[0] = ABS_CAST (unsigned long, num);
55 SIZ(NUM(dest)) = num > 0 ? 1 : -1;
set_ui.c 35 mpq_set_ui (mpq_t dest, unsigned long int num, unsigned long int den)
39 if (num == 0) /* Canonicalize 0/d to 0/1. */
41 mpz_set_ui (mpq_numref (dest), num); local
46 if (num == 0)
50 SIZ(NUM(dest)) = 0;
54 MPZ_NEWALLOC (NUM(dest), 1)[0] = num;
55 SIZ(NUM(dest)) = 1;
abs.c 39 mp_size_t num_abs_size = ABSIZ(NUM(src));
46 dp = MPZ_NEWALLOC (NUM(dst), num_abs_size);
47 MPN_COPY (dp, PTR(NUM(src)), num_abs_size);
54 SIZ(NUM(dst)) = num_abs_size;
neg.c 39 mp_size_t num_size = SIZ(NUM(src));
47 dp = MPZ_NEWALLOC (NUM(dst), size);
48 MPN_COPY (dp, PTR(NUM(src)), size);
56 SIZ(NUM(dst)) = -num_size;
set.c 41 num_size = SIZ(NUM(src));
42 SIZ(NUM(dest)) = num_size;
44 dp = MPZ_NEWALLOC (NUM(dest), abs_num_size);
45 MPN_COPY (dp, PTR(NUM(src)), abs_num_size);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/
watchthreads.c 27 #define NUM 5
29 unsigned int args[NUM+1];
35 pthread_t threads[NUM];
44 for (i = 0; i < NUM; i++)
51 for (i = 0; i < NUM; i++)
threadapply.c 27 #define NUM 5
29 unsigned int args[NUM+1];
35 pthread_t threads[NUM];
39 pthread_barrier_init(&mybarrier, NULL, NUM + 1);
41 for (i = 0; i < NUM; i++)
54 for (i = 0; i < NUM; i++)
async.c 23 #define NUM 2
49 pthread_t threads[NUM];
52 pthread_barrier_init (&threads_started_barrier, NULL, NUM + 1);
54 for (i = 1; i <= NUM; i++)
kill.c 23 #define NUM 5
49 pthread_t threads[NUM];
52 pthread_barrier_init (&barrier, NULL, NUM + 1);
53 for (i = 0; i < NUM; i++)
pending-step.c 24 #define NUM 1
26 unsigned int args[NUM+1];
30 pthread_t threads[NUM];
34 for (i = 1; i <= NUM; i++)
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/
info-threads-options.c 23 #define NUM 4
60 pthread_t threads[NUM];
61 int ids[NUM];
63 pthread_barrier_init (&threads_started_barrier, NULL, NUM + 1);
65 for (int i = 0; i < NUM; i++)
watchthreads.c 27 #define NUM 5
29 unsigned int args[NUM+1];
35 pthread_t threads[NUM];
44 for (i = 0; i < NUM; i++)
51 for (i = 0; i < NUM; i++)
threadapply.c 27 #define NUM 5
29 unsigned int args[NUM+1];
35 pthread_t threads[NUM];
39 pthread_barrier_init(&mybarrier, NULL, NUM + 1);
41 for (i = 0; i < NUM; i++)
54 for (i = 0; i < NUM; i++)
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.mi/
mi-pending.c 21 #define NUM 2
46 pthread_t threads[NUM];
52 for (i = 0; i < NUM; i++)
60 for (i = 0; i < NUM; i++) {
nsintrall.c 25 #define NUM 5
27 unsigned int args[NUM+1];
31 pthread_t threads[NUM];
35 for (i = 1; i <= NUM; i++)
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.dap/
threads.c 23 #define NUM 2
46 pthread_t threads[NUM];
49 pthread_barrier_init (&threads_started_barrier, NULL, NUM + 1);
51 for (i = 1; i <= NUM; i++)
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.mi/
mi-pending.c 21 #define NUM 2
46 pthread_t threads[NUM];
52 for (i = 0; i < NUM; i++)
60 for (i = 0; i < NUM; i++) {

Completed in 22 milliseconds

1 2 3 4 5 6 7 8 91011>>