/external/stlport/test/unit/ |
memory_test.cpp | 31 bool CheckEquality(auto_ptr<int> pint, int val) 32 { return *pint == val; } 42 auto_ptr<int> pint(new int(1)); 43 CPPUNIT_ASSERT( *pint == 1 ); 44 *pint = 2; 45 CPPUNIT_ASSERT( *pint == 2 ); 49 auto_ptr<int> pint(CreateAutoPtr(3)); 50 CPPUNIT_ASSERT( *pint == 3 ); 51 CPPUNIT_ASSERT( CheckEquality(pint, 3) ); 55 auto_ptr<const int> pint(new int(2)) [all...] |
config_test.cpp | 41 int *pint; local 42 pint = new(&int_val) int(); 43 CPPUNIT_ASSERT( pint == &int_val );
|
mvctor_test.cpp | 35 int *pint = &(v_v_ints.front().front()); local 45 CPPUNIT_ASSERT((pint == &v_v_ints.front().front())); 56 pint = &v_v_ints[2].front(); 60 CPPUNIT_ASSERT((pint == &v_v_ints[1].front()));
|
/ndk/tests/device/test-gnustl-full/unit/ |
memory_test.cpp | 31 bool CheckEquality(auto_ptr<int> pint, int val) 32 { return *pint == val; } 42 auto_ptr<int> pint(new int(1)); 43 CPPUNIT_ASSERT( *pint == 1 ); 44 *pint = 2; 45 CPPUNIT_ASSERT( *pint == 2 ); 49 auto_ptr<int> pint(CreateAutoPtr(3)); 50 CPPUNIT_ASSERT( *pint == 3 ); 51 CPPUNIT_ASSERT( CheckEquality(pint, 3) ); 55 auto_ptr<const int> pint(new int(2)) [all...] |
config_test.cpp | 41 int *pint; local 42 pint = new(&int_val) int(); 43 CPPUNIT_ASSERT( pint == &int_val );
|
mvctor_test.cpp | 35 int *pint = &(v_v_ints.front().front()); local 45 CPPUNIT_ASSERT((pint == &v_v_ints.front().front())); 56 pint = &v_v_ints[2].front(); 60 CPPUNIT_ASSERT((pint == &v_v_ints[1].front()));
|
/ndk/tests/device/test-stlport/unit/ |
memory_test.cpp | 31 bool CheckEquality(auto_ptr<int> pint, int val) 32 { return *pint == val; } 42 auto_ptr<int> pint(new int(1)); 43 CPPUNIT_ASSERT( *pint == 1 ); 44 *pint = 2; 45 CPPUNIT_ASSERT( *pint == 2 ); 49 auto_ptr<int> pint(CreateAutoPtr(3)); 50 CPPUNIT_ASSERT( *pint == 3 ); 51 CPPUNIT_ASSERT( CheckEquality(pint, 3) ); 55 auto_ptr<const int> pint(new int(2)) [all...] |
config_test.cpp | 41 int *pint; local 42 pint = new(&int_val) int(); 43 CPPUNIT_ASSERT( pint == &int_val );
|
mvctor_test.cpp | 35 int *pint = &(v_v_ints.front().front()); local 45 CPPUNIT_ASSERT((pint == &v_v_ints.front().front())); 56 pint = &v_v_ints[2].front(); 60 CPPUNIT_ASSERT((pint == &v_v_ints[1].front()));
|
/external/clang/test/Sema/ |
check-increment.c | 5 typedef int *pint; typedef 8 pint p = a;
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/ |
fenvinline.h | 1 /* This file provides inline versions of floating-pint environment
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/ |
fenvinline.h | 1 /* This file provides inline versions of floating-pint environment
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/ |
fenvinline.h | 1 /* This file provides inline versions of floating-pint environment
|
/external/clang/test/Rewriter/ |
undecl-objc-h.m | 4 int * pint;
|
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
OpenSSLDSAKeyPairGenerator.java | 77 BigInteger pInt = dsaParams.getP(); 78 if (pInt != null) { 79 p = pInt.toByteArray();
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
me_utils.cpp | 41 Int *pint = (Int *) cur, temp = 0; local 50 temp += (*pint++) & 0x00FF00FF; 51 temp += (*pint++) & 0x00FF00FF; 52 temp += (*pint++) & 0x00FF00FF; 53 temp += (*pint++) & 0x00FF00FF; 54 pint += offset; 57 temp += (*pint++ >> 8) & 0x00FF00FF; 58 temp += (*pint++ >> 8) & 0x00FF00FF; 59 temp += (*pint++ >> 8) & 0x00FF00FF; 60 temp += (*pint++ >> 8) & 0x00FF00FF [all...] |
/external/qemu/distrib/sdl-1.2.15/src/audio/mint/ |
SDL_mintaudio_mcsn.h | 40 unsigned short pint; /* Interrupt at end of replay */ member in struct:__anon13301
|
SDL_mintaudio_mcsn.c | 122 if (cookie_mcsn->pint == 0) {
|
/external/qemu/hw/ |
devices.h | 13 uWireSlave *tsc2102_init(qemu_irq pint);
|
/external/opencv/cvaux/include/ |
cvvidsurv.hpp | 71 int* pInt; 166 NewParam(name)->pInt=pAddr; 233 if(p->pInt) return p->pInt[0]; 251 if(p->pInt)p->pInt[0] = cvRound(val); [all...] |
/external/clang/unittests/AST/ |
DeclPrinterTest.cpp | 374 "typedef int *pInt;" 375 "void A(int a, pInt b, size_t c);", 377 "void A(int a, pInt b, size_t c)")); [all...] |
/external/kernel-headers/original/linux/ |
kernel.h | 130 extern int get_option(char **str, int *pint);
|
/external/chromium/third_party/libevent/test/ |
regress.c | 519 int *pint = arg; local 521 *pint = 1; [all...] |
/external/clang/lib/Sema/ |
SemaExpr.cpp | [all...] |
/external/jhead/ |
jhead.c | 79 static int SupressNonFatalErrors = FALSE; // Wether or not to pint warnings on recoverable errors [all...] |