HomeSort by relevance Sort by last modified time
    Searched full:int_ptr (Results 1 - 25 of 41) sorted by null

1 2

  /external/clang/test/PCH/
types.h 13 typedef int * int_ptr; typedef
39 typedef int_ptr * int_ptr_ptr;
45 typedef typeof(int_ptr *) int_ptr_ptr2;
types.c 26 int_ptr int_value_ptr = &int_value;
  /external/chromium/net/http/
mock_sspi_library_win.cc 30 phCredential->dwLower = phCredential->dwUpper = ((ULONG_PTR) ((INT_PTR)0));
56 phNewContext->dwLower = phNewContext->dwUpper = ((ULONG_PTR) ((INT_PTR)0));
75 EXPECT_TRUE(phCredential->dwLower == ((ULONG_PTR) ((INT_PTR) 0)));
76 EXPECT_TRUE(phCredential->dwLower == ((ULONG_PTR) ((INT_PTR) 0)));
82 EXPECT_TRUE(phContext->dwLower == ((ULONG_PTR) ((INT_PTR) 0)));
83 EXPECT_TRUE(phContext->dwLower == ((ULONG_PTR) ((INT_PTR) 0)));
  /external/chromium_org/net/http/
mock_sspi_library_win.cc 30 phCredential->dwLower = phCredential->dwUpper = ((ULONG_PTR) ((INT_PTR)0));
56 phNewContext->dwLower = phNewContext->dwUpper = ((ULONG_PTR) ((INT_PTR)0));
75 EXPECT_TRUE(phCredential->dwLower == ((ULONG_PTR) ((INT_PTR) 0)));
76 EXPECT_TRUE(phCredential->dwLower == ((ULONG_PTR) ((INT_PTR) 0)));
82 EXPECT_TRUE(phContext->dwLower == ((ULONG_PTR) ((INT_PTR) 0)));
83 EXPECT_TRUE(phContext->dwLower == ((ULONG_PTR) ((INT_PTR) 0)));
  /frameworks/base/media/mca/filterfw/jni/
jni_vertex_frame.cpp 40 jint* int_ptr = env->GetIntArrayElements(ints, NULL); local
42 if (int_ptr) {
43 const bool success = frame->WriteData(reinterpret_cast<const uint8_t*>(int_ptr),
45 env->ReleaseIntArrayElements(ints, int_ptr, JNI_ABORT);
jni_gl_frame.cpp 146 jint* int_ptr = env->GetIntArrayElements(ints, NULL); local
148 if (int_ptr) {
149 const bool success = frame->WriteData(reinterpret_cast<const uint8_t*>(int_ptr),
151 env->ReleaseIntArrayElements(ints, int_ptr, JNI_ABORT);
jni_native_frame.cpp 103 jint* int_ptr = env->GetIntArrayElements(ints, NULL); local
105 if (int_ptr) {
106 const bool success = frame->WriteData(reinterpret_cast<const uint8_t*>(int_ptr),
109 env->ReleaseIntArrayElements(ints, int_ptr, JNI_ABORT);
  /external/chromium_org/third_party/skia/src/views/win/
skia_win.cpp 24 INT_PTR CALLBACK About(HWND, UINT, WPARAM, LPARAM);
190 INT_PTR CALLBACK About(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
196 return (INT_PTR)TRUE;
202 return (INT_PTR)TRUE;
206 return (INT_PTR)FALSE;
  /external/skia/src/views/win/
skia_win.cpp 24 INT_PTR CALLBACK About(HWND, UINT, WPARAM, LPARAM);
190 INT_PTR CALLBACK About(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
196 return (INT_PTR)TRUE;
202 return (INT_PTR)TRUE;
206 return (INT_PTR)FALSE;
  /external/clang/test/SemaTemplate/
ext-vector-type.cpp 42 typedef int* int_ptr; typedef
45 typedef int_ptr __attribute__((ext_vector_type(Length))) type; // expected-error{{invalid vector element type}}
temp_class_spec.cpp 77 typedef INT* int_ptr; typedef
82 int is_same3[is_same<int_ptr, int>::value? -1 : 1];
  /external/chromium_org/content/shell/browser/
shell_javascript_dialog.h 51 static INT_PTR CALLBACK DialogProc(HWND dialog, UINT message, WPARAM wparam,
shell_javascript_dialog_win.cc 16 INT_PTR CALLBACK ShellJavaScriptDialog::DialogProc(HWND dialog,
  /external/clang/test/Modules/
submodules.cpp 10 remove_reference<int&>::type *int_ptr = 0; // expected-error{{unknown type name 'remove_reference'}} \ variable
  /external/clang/test/SemaCXX/
address-space-conversion.cpp 13 typedef int *int_ptr; typedef
25 void test_const_cast(int_ptr ip, int_ptr_1 ip1, int_ptr_2 ip2,
31 (void)const_cast<int_ptr>(ip1); // expected-error{{is not allowed}}
32 (void)const_cast<int_ptr>(ip2); // expected-error{{is not allowed}}
46 (void)const_cast<int_ptr>(cip);
conversion-function.cpp 39 typedef INT* INT_PTR;
46 operator INT_PTR*(); // expected-error{{conversion function cannot be redeclared}}
  /external/chromium_org/chrome/installer/mini_installer/
decompress.cc 89 return reinterpret_cast<INT_PTR>(file);
115 INT_PTR result = 0;
125 result = reinterpret_cast<INT_PTR>(::CreateFileW(destination,
  /external/clang/test/Sema/
warn-type-safety.c 152 void test_64bit_magic(int *int_ptr, float *float_ptr)
154 F_func(int_ptr, 0xFFFFFFFFFFFFFFFFULL);
155 F_func(int_ptr, 0xFFFFFFFFULL); // expected-warning {{argument type 'int *' doesn't match specified 'f' type tag that requires 'float *'}}
  /external/chromium_org/sandbox/win/sandbox_poc/
main_ui_window.cc 161 INT_PTR CALLBACK MainUIWindow::SpawnTargetWndProc(HWND dialog,
190 return static_cast<INT_PTR>(TRUE);
200 return static_cast<INT_PTR>(TRUE);
204 return static_cast<INT_PTR>(TRUE);
213 return static_cast<INT_PTR>(TRUE);
222 return static_cast<INT_PTR>(TRUE);
228 return static_cast<INT_PTR>(FALSE);
  /ndk/sources/host-tools/sed-4.2.1/m4/
gnulib-common.m4 72 [[typedef int * int_ptr;
73 int foo (int_ptr $ac_kw ip) {
  /external/compiler-rt/lib/asan/tests/
asan_test.cc 390 int *int_ptr = new int[0]; local
392 EXPECT_TRUE(NULL != int_ptr);
394 EXPECT_NE(int_ptr, int_ptr2);
395 delete[] int_ptr;
406 int *int_ptr = Ident(new int); local
409 EXPECT_EQ(sizeof(int), malloc_usable_size(int_ptr));
415 delete int_ptr;
    [all...]
  /external/opencv/ml/src/
mltree.cpp 133 int** int_ptr = 0; local
301 CV_CALL( int_ptr = (int**)cvAlloc( sample_count*sizeof(int_ptr[0]) ));
373 int_ptr[i] = dst + i;
378 icvSortIntPtr( int_ptr, sample_count, 0 );
379 //qsort( int_ptr, sample_count, sizeof(int_ptr[0]), icvCmpIntPtr );
385 c_count += *int_ptr[i] != *int_ptr[i-1];
407 prev_label = ~*int_ptr[0]
    [all...]
  /external/chromium_org/remoting/host/
disconnect_window_win.cc 46 static INT_PTR CALLBACK DialogProc(HWND hwnd, UINT message, WPARAM wparam,
133 INT_PTR CALLBACK DisconnectWindowWin::DialogProc(HWND hwnd,
  /external/chromium_org/third_party/opus/src/
configure.ac 56 [[typedef int * int_ptr;
57 int foo (int_ptr $ac_kw ip, int * $ac_kw baz[]) {
  /external/clang/test/Index/
load-stmts.cpp 37 Integer *int_ptr; local
38 int_ptr->Integer::~Integer();
168 // CHECK: load-stmts.cpp:37:12: VarDecl=int_ptr:37:12 (Definition) Extent=[37:3 - 37:19]
170 // CHECK: load-stmts.cpp:38:3: DeclRefExpr=int_ptr:37:12 Extent=[38:3 - 38:10]

Completed in 711 milliseconds

1 2