HomeSort by relevance Sort by last modified time
    Searched defs:ptr (Results 76 - 100 of 2235) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRPtrBuffer.h 45 NSInteger ptr; variable
52 @property (getter=getPtr, setter=setPtr:) NSInteger ptr; variable
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRPtrBuffer.h 42 NSUInteger ptr; variable
49 @property (getter=getPtr, setter=setPtr:) NSUInteger ptr; variable
  /external/clang/test/Analysis/
return-ptr-range.cpp 4 int *ptr; variable
11 ptr = arr + x;
15 return ptr; // expected-warning{{Returned pointer value points outside the original object (potential buffer overflow)}}
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p4.cpp 44 void *ptr = x; local
  /external/clang/test/CodeGenCXX/
stack-reuse-miscompile.cpp 8 char *ptr; member in class:S
  /external/clang/test/SemaCXX/
PR10447.cpp 21 test2::Bar *ptr; variable
  /external/compiler-rt/test/safestack/
pthread.c 15 void *t1_start(void *ptr)
17 if (ptr != &ptr_test)
28 return ptr;
34 void *ptr = NULL; local
37 if (pthread_join(t1, &ptr))
39 if (ptr != &ptr_test)
  /external/compiler-rt/test/tsan/
mmap_stress.cc 10 int *ptr = (int*)mmap(0, kMmapSize, PROT_READ | PROT_WRITE, local
12 if (ptr == MAP_FAILED)
14 *ptr = 42;
15 if (munmap(ptr, kMmapSize))
  /external/curl/lib/
llist.c 61 ne->ptr = (void *) p;
96 void *ptr; local
120 ptr = e->ptr;
122 e->ptr = NULL;
130 list->dtor(user, ptr);
  /external/curl/tests/libtest/
lib1537.c 31 char *ptr = NULL; local
44 ptr = curl_easy_escape(NULL, (char *)a, asize);
45 printf("%s\n", ptr);
46 if(ptr)
47 curl_free(ptr);
50 ptr = curl_escape((char *)a, asize);
51 printf("%s\n", ptr);
52 if(!ptr) {
57 raw = curl_easy_unescape(NULL, ptr, (int)strlen(ptr), &outlen)
    [all...]
  /external/e2fsprogs/ext2ed/
ext2_com.c 54 char temp [80],buffer [80],*ptr; local
56 ptr=parse_word (command_line,buffer);
57 if (*ptr==0) {
60 ptr=parse_word (ptr,buffer);
86 char *ptr,buffer [80]; local
88 ptr=parse_word (command_line,buffer);
89 if (*ptr!=0) {
90 ptr=parse_word (ptr,buffer)
    [all...]
  /external/fio/crc/
fnv.c 11 const uint64_t *ptr = buf; local
16 hval ^= (uint64_t) *ptr++;
20 const uint8_t *ptr8 = (const uint8_t *) ptr;
  /external/icu/icu4c/source/i18n/
sharedbreakiterator.h 36 BreakIterator *get() const { return ptr; }
37 BreakIterator *operator->() const { return ptr; }
38 BreakIterator &operator*() const { return *ptr; }
40 BreakIterator *ptr; member in class:SharedBreakIterator
sharedcalendar.h 23 SharedCalendar(Calendar *calToAdopt) : ptr(calToAdopt) { }
25 const Calendar *get() const { return ptr; }
26 const Calendar *operator->() const { return ptr; }
27 const Calendar &operator*() const { return *ptr; }
29 Calendar *ptr; member in class:SharedCalendar
sharednumberformat.h 23 SharedNumberFormat(NumberFormat *nfToAdopt) : ptr(nfToAdopt) { }
25 const NumberFormat *get() const { return ptr; }
26 const NumberFormat *operator->() const { return ptr; }
27 const NumberFormat &operator*() const { return *ptr; }
29 NumberFormat *ptr; member in class:SharedNumberFormat
  /external/libcxx/src/
new.cpp 138 operator delete(void* ptr) _NOEXCEPT
140 if (ptr)
141 ::free(ptr); variable
146 operator delete(void* ptr, const std::nothrow_t&) _NOEXCEPT
148 ::operator delete(ptr); variable
153 operator delete(void* ptr, size_t) _NOEXCEPT
155 ::operator delete(ptr); variable
160 operator delete[] (void* ptr) _NOEXCEPT
162 ::operator delete(ptr); variable
167 operator delete[] (void* ptr, const std::nothrow_t&) _NOEXCEP
169 ::operator delete[](ptr); variable
176 ::operator delete[](ptr); variable
264 ::_aligned_free(ptr); variable
    [all...]
  /external/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/
construct_pair_const_lvalue_pair.pass.cpp 44 Pair * ptr = (Pair*)std::malloc(sizeof(Pair)); local
45 assert(ptr != nullptr);
49 A.construct(ptr, in);
50 assert(checkConstruct<int&>(ptr->first, UA_AllocArg, CA));
51 assert(checkConstruct<int const&>(ptr->second, UA_AllocLast, CA));
55 >(CA, ptr)));
56 A.destroy(ptr);
57 std::free(ptr);
71 Pair * ptr = (Pair*)std::malloc(sizeof(Pair)); local
72 assert(ptr != nullptr)
107 Pair * ptr = (Pair*)std::malloc(sizeof(Pair)); local
138 Pair * ptr = (Pair*)std::malloc(sizeof(Pair)); local
    [all...]
construct_pair_piecewise.pass.cpp 44 Pair * ptr = (Pair*)std::malloc(sizeof(Pair)); local
45 assert(ptr != nullptr);
48 A.construct(ptr, std::piecewise_construct,
51 assert(checkConstruct<int&>(ptr->first, UA_AllocArg, CA));
52 assert(checkConstruct<int const&&>(ptr->second, UA_AllocLast, CA));
56 >(CA, ptr)));
57 A.destroy(ptr);
58 std::free(ptr);
71 Pair * ptr = (Pair*)std::malloc(sizeof(Pair)); local
72 assert(ptr != nullptr)
107 Pair * ptr = (Pair*)std::malloc(sizeof(Pair)); local
138 Pair * ptr = (Pair*)std::malloc(sizeof(Pair)); local
    [all...]
construct_pair_rvalue.pass.cpp 44 Pair * ptr = (Pair*)std::malloc(sizeof(Pair)); local
45 assert(ptr != nullptr);
49 A.construct(ptr, std::move(in));
50 assert(checkConstruct<int&>(ptr->first, UA_AllocArg, CA));
51 assert(checkConstruct<int const&&>(ptr->second, UA_AllocLast, CA));
55 >(CA, ptr)));
56 A.destroy(ptr);
57 std::free(ptr);
71 Pair * ptr = (Pair*)std::malloc(sizeof(Pair)); local
72 assert(ptr != nullptr)
107 Pair * ptr = (Pair*)std::malloc(sizeof(Pair)); local
138 Pair * ptr = (Pair*)std::malloc(sizeof(Pair)); local
    [all...]
construct_pair_values.pass.cpp 43 Pair * ptr = (Pair*)std::malloc(sizeof(Pair)); local
44 assert(ptr != nullptr);
47 A.construct(ptr, x, std::move(y));
48 assert(checkConstruct<int&>(ptr->first, UA_AllocArg, CA));
49 assert(checkConstruct<int const&&>(ptr->second, UA_AllocLast, CA));
53 >(CA, ptr)));
54 A.destroy(ptr);
55 std::free(ptr);
68 Pair * ptr = (Pair*)std::malloc(sizeof(Pair)); local
69 assert(ptr != nullptr)
102 Pair * ptr = (Pair*)std::malloc(sizeof(Pair)); local
131 Pair * ptr = (Pair*)std::malloc(sizeof(Pair)); local
    [all...]
  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/
pointer.pass.cpp 31 A* ptr = new A; local
32 std::shared_ptr<A> p(ptr);
35 assert(p.get() == ptr);
39 A* ptr = new A; local
40 std::shared_ptr<void> p(ptr);
43 assert(p.get() == ptr);
pointer_deleter.pass.cpp 34 A* ptr = new A; local
35 std::shared_ptr<A> p(ptr, test_deleter<A>(3));
38 assert(p.get() == ptr);
pointer_deleter_allocator_throw.pass.cpp 33 A* ptr = new A; local
37 std::shared_ptr<A> p(ptr, test_deleter<A>(3), test_allocator<A>(5));
pointer_deleter_throw.pass.cpp 40 A* ptr = new A; local
44 std::shared_ptr<A> p(ptr, test_deleter<A>(3));
pointer_throw.pass.cpp 39 A* ptr = new A; local
44 std::shared_ptr<A> p(ptr);

Completed in 544 milliseconds

1 2 34 5 6 7 8 91011>>