Searched refs:used (Results 76 - 100 of 2193) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
H A Dpy-as-string.c25 static enum EnumType __attribute__ ((used)) enum_valid = ENUM_VALUE_B;
26 static enum EnumType __attribute__ ((used)) enum_invalid = (enum EnumType) 20;
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
H A Dbn_mp_rshd.c30 /* if b > used then simply zero it and return */
31 if (a->used <= b) {
57 for (x = 0; x < (a->used - b); x++) {
62 for (; x < a->used; x++) {
68 a->used -= b;
H A Dbn_mp_count_bits.c28 if (a->used == 0) {
33 r = (a->used - 1) * DIGIT_BIT;
36 q = a->dp[a->used - 1];
H A Dbn_s_mp_mul_high_digs.c34 if (((a->used + b->used + 1) < MP_WARRAY)
35 && MIN (a->used, b->used) < (1 << ((CHAR_BIT * sizeof (mp_word)) - (2 * DIGIT_BIT)))) {
40 if ((res = mp_init_size (&t, a->used + b->used + 1)) != MP_OKAY) {
43 t.used = a->used + b->used + 1;
45 pa = a->used;
[all...]
H A Dbn_mp_sub_d.c28 if (c->alloc < a->used + 1) {
29 if ((res = mp_grow(c, a->used + 1)) != MP_OKAY) {
49 oldused = c->used;
54 if ((a->used == 1 && a->dp[0] <= b) || a->used == 0) {
55 if (a->used == 1) {
64 c->used = 1;
68 c->used = a->used;
76 for (ix = 1; ix < a->used; i
[all...]
H A Dbn_mp_lshd.c31 if (a->alloc < a->used + b) {
32 if ((res = mp_grow (a, a->used + b)) != MP_OKAY) {
40 /* increment the used by the shift amount then copy upwards */
41 a->used += b;
44 top = a->dp + a->used - 1;
47 bottom = a->dp + a->used - 1 - b;
53 for (x = a->used - 1; x >= b; x--) {
/netbsd-current/tests/usr.bin/xlint/lint2/
H A Dmsg_002.exp1 defined defined( msg_002.c(3) ), but never used
2 only_declared declared( msg_002.c(2) ), but never used or defined
/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-ctf/
H A Dcross-tu-1.c12 static struct A *foo __attribute__((used));
H A Dcross-tu-2.c8 static struct A *foo __attribute__((used));
H A Dcross-tu-conflicting-2.c8 static struct A *foo __attribute__((used));
/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-elf/
H A Dfoo.c10 __attribute__ ((used, section (".init_array"), aligned (sizeof (void *))))
H A Dpr21964-1a.c6 static int my_var __attribute__((used, section("__verbose"))) = 5;
H A Dpr21964-1b.c6 static int my_var __attribute__((used, section("__verbose"))) = 10;
H A Dpr21964-2a.c6 static int my_var __attribute__((used, section("__verbose"))) = 5;
H A Dpr21964-2b.c6 static int my_var __attribute__((used, section("__verbose"))) = 10;
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/nios2/
H A Dbreak.s1 # Source file used to test the 20-bit break instructions
H A Dbret.s1 # Source file used to test the bret instructions
H A Dret.s1 # Source file used to test the ret instructions
H A Dsync.s1 # Source file used to test the sync instructions
H A Dtret.s1 # Source file used to test the ret instructions
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/tic6x/
H A Dresource-func-unit-2.l2 [^:]*:17: Error: functional unit already used in this execute packet
3 [^:]*:19: Error: functional unit already used in this execute packet
/netbsd-current/external/gpl3/gdb.old/dist/gold/testsuite/
H A Dpr14265.c1 int foo0 __attribute__((used,section(".foo0.0")));
2 int foo1 __attribute__((used,section(".foo1.0")));
3 int foo2 __attribute__((used,section(".foo2.0")));
/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-gc/
H A Dpr14265.c1 int foo0 __attribute__((used,section(".foo0.0")));
2 int foo1 __attribute__((used,section(".foo1.0")));
3 int foo2 __attribute__((used,section(".foo2.0")));
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.mi/
H A Dmi-sym-info-2.c19 static float __attribute__ ((used)) global_f1;
47 static another_char_t __attribute__ ((used)) var1;
48 static another_short_t __attribute__ ((used)) var2;
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DWeak.h9 // This file defines the WeakInfo class, which is used to store
27 bool used; // identifier later declared? member in class:clang::WeakInfo
30 : alias(nullptr), loc(SourceLocation()), used(false) {}
32 : alias(Alias), loc(Loc), used(false) {}
35 void setUsed(bool Used=true) { used = Used; }
36 inline bool getUsed() { return used; }

Completed in 131 milliseconds

1234567891011>>