HomeSort by relevance Sort by last modified time
    Searched refs:used (Results 1 - 25 of 3575) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
attr-used.c 2 // RUN: grep '@llvm.used = .*@g0' %t
3 // RUN: grep '@llvm.used = .*@f0' %t
4 // RUN: grep '@llvm.used = .*@f1.l0' %t
7 int g0 __attribute__((used));
9 static void __attribute__((used)) f0(void) {
13 static int l0 __attribute__((used)) = 5225;
2005-12-04-AttributeUsed.c 3 // CHECK: @llvm.used = appending global [2 x i8*] [i8* bitcast (void ()* @foo to i8*), i8* bitcast (i32* @X to i8*)], section "llvm.metadata"
4 int X __attribute__((used));
7 __attribute__((used)) void foo() {}
  /external/clang/test/CodeGenCXX/
attr-used.cpp 3 // <rdar://problem/8684363>: clang++ not respecting __attribute__((used)) on destructors
6 __attribute__((used)) X0() {}
8 __attribute__((used)) ~X0() {}
extern-c.cpp 44 __attribute__((used)) static int internal_var;
45 __attribute__((used)) static int internal_fn() { return 0; }
47 __attribute__((used)) static int duplicate_internal_var;
48 __attribute__((used)) static int duplicate_internal_fn() { return 0; }
51 __attribute__((used)) static int duplicate_internal_var;
52 __attribute__((used)) static int duplicate_internal_fn() { return 0; }
55 // CHECK: @llvm.used = appending global {{.*}} @internal_var {{.*}} @internal_fn
  /external/clang/test/Index/
retain-target-options.c 5 // CHECK: error: SSE4_1 used
7 #error SSE4_1 used
  /external/clang/test/Sema/
attr-used.c 3 extern int l0 __attribute__((used)); // expected-warning {{used attribute ignored}}
4 __private_extern__ int l1 __attribute__((used)); // expected-warning {{used attribute ignored}}
6 struct __attribute__((used)) s { // expected-warning {{'used' attribute only applies to variables and functions}}
10 int a __attribute__((used));
12 static void __attribute__((used)) f0(void) {
16 static int a __attribute__((used));
17 int b __attribute__((used)); // expected-warning {{used attribute ignored}
    [all...]
  /external/dropbear/libtommath/
bn_mp_clamp.c 20 * This is used to ensure that leading zero digits are
21 * trimed and the leading "used" digit will be non-zero
28 /* decrease used while the most significant digit is
31 while (a->used > 0 && a->dp[a->used - 1] == 0) {
32 --(a->used);
35 /* reset the sign flag if used == 0 */
36 if (a->used == 0) {
bn_mp_cmp_mag.c 25 if (a->used > b->used) {
29 if (a->used < b->used) {
34 tmpa = a->dp + (a->used - 1);
37 tmpb = b->dp + (a->used - 1);
40 for (n = 0; n < a->used; ++n, --tmpa, --tmpb) {
bn_mp_div_2.c 24 if (b->alloc < a->used) {
25 if ((res = mp_grow (b, a->used)) != MP_OKAY) {
30 oldused = b->used;
31 b->used = a->used;
36 tmpa = a->dp + b->used - 1;
39 tmpb = b->dp + b->used - 1;
43 for (x = b->used - 1; x >= 0; x--) {
55 tmpb = b->dp + b->used;
56 for (x = b->used; x < oldused; x++)
    [all...]
bn_mp_reduce_is_2k_l.c 18 /* determines if reduce_2k_l can be used */
23 if (a->used == 0) {
25 } else if (a->used == 1) {
27 } else if (a->used > 1) {
29 for (iy = ix = 0; ix < a->used; ix++) {
34 return (iy >= (a->used/2)) ? MP_YES : MP_NO;
bn_mp_mul.c 26 if (MIN (a->used, b->used) >= TOOM_MUL_CUTOFF) {
32 if (MIN (a->used, b->used) >= KARATSUBA_MUL_CUTOFF) {
39 * The fast multiplier can be used if the output will
43 int digs = a->used + b->used + 1;
47 MIN(a->used, b->used) <=
59 c->sign = (c->used > 0) ? neg : MP_ZPOS
    [all...]
bn_mp_mul_2.c 24 if (b->alloc < a->used + 1) {
25 if ((res = mp_grow (b, a->used + 1)) != MP_OKAY) {
30 oldused = b->used;
31 b->used = a->used;
44 for (x = 0; x < a->used; x++) {
64 ++(b->used);
70 tmpb = b->dp + b->used;
71 for (x = b->used; x < oldused; x++) {
bn_mp_copy.c 30 if (b->alloc < a->used) {
31 if ((res = mp_grow (b, a->used)) != MP_OKAY) {
49 for (n = 0; n < a->used; n++) {
54 for (; n < b->used; n++) {
59 /* copy used count and sign */
60 b->used = a->used;
bn_mp_dr_is_modulus.c 24 if (a->used < 2) {
31 for (ix = 1; ix < a->used; ix++) {
bn_mp_rshd.c 28 /* if b > used then simply zero it and return */
29 if (a->used <= b) {
55 for (x = 0; x < (a->used - b); x++) {
60 for (; x < a->used; x++) {
66 a->used -= b;
bn_mp_shrink.c 22 if (a->alloc != a->used && a->used > 0) {
23 if ((tmp = OPT_CAST(mp_digit) XREALLOC (a->dp, sizeof (mp_digit) * a->used)) == NULL) {
27 a->alloc = a->used;
bn_mp_count_bits.c 26 if (a->used == 0) {
31 r = (a->used - 1) * DIGIT_BIT;
34 q = a->dp[a->used - 1];
bn_s_mp_mul_high_digs.c 32 if (((a->used + b->used + 1) < MP_WARRAY)
33 && MIN (a->used, b->used) < (1 << ((CHAR_BIT * sizeof (mp_word)) - (2 * DIGIT_BIT)))) {
38 if ((res = mp_init_size (&t, a->used + b->used + 1)) != MP_OKAY) {
41 t.used = a->used + b->used + 1;
43 pa = a->used;
    [all...]
bn_mp_sub_d.c 26 if (c->alloc < a->used + 1) {
27 if ((res = mp_grow(c, a->used + 1)) != MP_OKAY) {
47 oldused = c->used;
52 if ((a->used == 1 && a->dp[0] <= b) || a->used == 0) {
53 if (a->used == 1) {
62 c->used = 1;
66 c->used = a->used;
74 for (ix = 1; ix < a->used; ix++)
    [all...]
  /external/chromium_org/third_party/re2/util/
strutil.cc 20 int used = 0; local
23 if (dest_len - used < 2) // Need space for two letter escape
28 case '\n': dest[used++] = '\\'; dest[used++] = 'n'; break;
29 case '\r': dest[used++] = '\\'; dest[used++] = 'r'; break;
30 case '\t': dest[used++] = '\\'; dest[used++] = 't'; break;
31 case '\"': dest[used++] = '\\'; dest[used++] = '\"'; break
    [all...]
  /external/regex-re2/util/
strutil.cc 20 int used = 0; local
23 if (dest_len - used < 2) // Need space for two letter escape
28 case '\n': dest[used++] = '\\'; dest[used++] = 'n'; break;
29 case '\r': dest[used++] = '\\'; dest[used++] = 'r'; break;
30 case '\t': dest[used++] = '\\'; dest[used++] = 't'; break;
31 case '\"': dest[used++] = '\\'; dest[used++] = '\"'; break
    [all...]
  /ndk/tests/device/test-stlport_shared-exception/jni/
gcsec1.cpp 17 void used() function
39 used ();
  /ndk/tests/device/test-stlport_static-exception/jni/
gcsec1.cpp 17 void used() function
39 used ();
  /external/clang/test/SemaCXX/
warn-unused-attribute.cpp 17 Test used; local
19 used.use();
  /external/clang/include/clang/Sema/
Weak.h 10 // This file defines the WeakInfo class, which is used to store
28 bool used; // identifier later declared? member in class:clang::WeakInfo
31 : alias(0), loc(SourceLocation()), used(false) {}
33 : alias(Alias), loc(Loc), used(false) {}
36 void setUsed(bool Used=true) { used = Used; }
37 inline bool getUsed() { return used; }

Completed in 851 milliseconds

1 2 3 4 5 6 7 8 91011>>