HomeSort by relevance Sort by last modified time
    Searched refs:ap1 (Results 1 - 9 of 9) sorted by null

  /external/clang/test/CodeGen/
merge-statics.c 8 struct s *ap1 = &a; variable in typeref:struct:s
  /external/clang/test/SemaCXX/
address-space-conversion.cpp 26 A_ptr ap, A_ptr_1 ap1, A_ptr_2 ap2,
38 (void)const_cast<A_ptr>(ap1); // expected-error{{is not allowed}}
43 (void)const_cast<A_ptr_2>(ap1); // expected-error{{is not allowed}}
51 A_ptr ap, A_ptr_1 ap1, A_ptr_2 ap2,
60 (void)static_cast<B_ptr_1>(ap1);
65 (void)static_cast<void_ptr_1>(ap1);
80 (void)static_cast<B_ptr>(ap1); // expected-error{{casts away qualifiers}}
85 (void)static_cast<B_ptr_2>(ap1); // expected-error{{casts away qualifiers}}
88 (void)static_cast<void_ptr>(ap1); // expected-error{{is not allowed}}
93 (void)static_cast<void_ptr_2>(ap1); // expected-error{{is not allowed}
    [all...]
  /external/clang/test/Analysis/
malloc-sizeof.c 20 struct A *ap1 = calloc(1, sizeof(struct A)); local
21 struct A *ap2 = calloc(2, sizeof(*ap1));
22 struct A *ap3 = calloc(2, sizeof(ap1)); // expected-warning {{Result of 'calloc' is converted to type 'struct A *', whose pointee type 'struct A' is incompatible with sizeof operand type 'struct A *'}}
  /external/openssl/crypto/objects/
objxref.pl 49 my$ap1 = $oid_tbl{$xref_tbl{$a}[0]};
51 return $ap1 - $bp1 if ($ap1 != $bp1);
  /external/bluetooth/glib/glib/
gutils.h 68 # define G_VA_COPY(ap1, ap2) (*(ap1) = *(ap2))
70 # define G_VA_COPY(ap1, ap2) g_memmove ((ap1), (ap2), sizeof (va_list))
72 # define G_VA_COPY(ap1, ap2) ((ap1) = (ap2))
  /external/dbus/dbus/
dbus-sysdeps.h 447 # define DBUS_VA_COPY(ap1, ap2) (*(ap1) = *(ap2))
449 # define DBUS_VA_COPY(ap1, ap2) memcpy ((ap1), (ap2), sizeof (va_list))
451 # define DBUS_VA_COPY(ap1, ap2) ((ap1) = (ap2))
  /system/core/sh/
options.c 318 char **ap1, **ap2; local
327 for (ap1 = shellparam.p ; --n >= 0 ; ap1++) {
329 ckfree(*ap1);
332 while ((*ap2++ = *ap1++) != NULL);
  /external/opencv/cv/src/
cvcontourtree.cpp 78 a, ap1, ap2, an1, an2, b, bp1, bp2, bn1, bn2; local
207 &ap1, &bp1 ));
355 ap2 = ap1;
356 ap1 = a;
399 icvCalcTriAttr( contour, tp1, tn2, nmn2, t, nm, &sp1, &sp1_c, &hp1, &ap1,
484 tree_one.r1 = hp1 / ap1;
485 tree_one.r2 = bp1 / ap1;
  /libcore/luni/src/test/java/libcore/java/util/prefs/
OldAbstractPreferencesTest.java 765 AbstractPreferences ap1 = (AbstractPreferences) pref.node("First node"); local
1008 AbstractPreferences ap1 = (AbstractPreferences) pref.node("First node"); local
1014 ap1.putInt("FirstIntValue", 11);
1025 assertEquals(11, ap1.getInt("FirstIntValue", 22));
    [all...]

Completed in 285 milliseconds