| /external/sdv/vsomeip/third_party/boost/numeric/ublas/include/boost/numeric/ublas/tensor/ |
| D | algorithms.hpp | 45 …"Static error in boost::numeric::ublas::copy: Argument types for pointers are not pointer types."); in copy() 50 …ow std::length_error("Error in boost::numeric::ublas::copy: Pointers shall not be null pointers."); in copy() 53 …ow std::length_error("Error in boost::numeric::ublas::copy: Pointers shall not be null pointers."); in copy() 56 …ow std::length_error("Error in boost::numeric::ublas::copy: Pointers shall not be null pointers."); in copy() 97 …"Static error in boost::numeric::ublas::transform: Argument types for pointers are not pointer typ… in transform() 102 …d::length_error("Error in boost::numeric::ublas::transform: Pointers shall not be null pointers."); in transform() 105 …d::length_error("Error in boost::numeric::ublas::transform: Pointers shall not be null pointers."); in transform() 108 …d::length_error("Error in boost::numeric::ublas::transform: Pointers shall not be null pointers."); in transform() 144 …"Static error in boost::numeric::ublas::transform: Argument types for pointers are not pointer typ… in accumulate() 150 …d::length_error("Error in boost::numeric::ublas::transform: Pointers shall not be null pointers."); in accumulate() [all …]
|
| /external/rust/crates/tokio/src/util/ |
| D | linked_list.rs | 36 /// the list pointers is decoupled from the entry type. 59 /// Return the pointers for a node 67 unsafe fn pointers(target: NonNull<Self::Target>) -> NonNull<Pointers<Self::Target>>; in pointers() method 70 /// Previous / next pointers. 71 pub(crate) struct Pointers<T> { struct 82 /// As an alternative to accessing the fields directly, the `Pointers` type 108 unsafe impl<T: Send> Send for Pointers<T> {} implementation 109 unsafe impl<T: Sync> Sync for Pointers<T> {} implementation 132 L::pointers(ptr).as_mut().set_next(self.head); in push_front() 133 L::pointers(ptr).as_mut().set_prev(None); in push_front() [all …]
|
| /external/boringssl/src/crypto/ |
| D | thread_pthread.c | 84 void **pointers = arg; in thread_local_destructor() local 87 destructors[i](pointers[i]); in thread_local_destructor() 91 free(pointers); in thread_local_destructor() 109 void **pointers = pthread_getspecific(g_thread_local_key); in CRYPTO_get_thread_local() local 110 if (pointers == NULL) { in CRYPTO_get_thread_local() 113 return pointers[index]; in CRYPTO_get_thread_local() 124 void **pointers = pthread_getspecific(g_thread_local_key); in CRYPTO_set_thread_local() local 125 if (pointers == NULL) { in CRYPTO_set_thread_local() 126 pointers = malloc(sizeof(void *) * NUM_OPENSSL_THREAD_LOCALS); in CRYPTO_set_thread_local() 127 if (pointers == NULL) { in CRYPTO_set_thread_local() [all …]
|
| D | thread_win.c | 93 void **pointers = (void**) TlsGetValue(g_thread_local_key); in thread_local_destructor() local 94 if (pointers == NULL) { in thread_local_destructor() 106 destructors[i](pointers[i]); in thread_local_destructor() 110 free(pointers); in thread_local_destructor() 138 // .CRT$XLA to .CRT$XLZ is an array of PIMAGE_TLS_CALLBACK pointers that are 198 void **pointers = get_thread_locals(); in CRYPTO_get_thread_local() local 199 if (pointers == NULL) { in CRYPTO_get_thread_local() 202 return pointers[index]; in CRYPTO_get_thread_local() 213 void **pointers = get_thread_locals(); in CRYPTO_set_thread_local() local 214 if (pointers == NULL) { in CRYPTO_set_thread_local() [all …]
|
| /external/cronet/third_party/boringssl/src/crypto/ |
| D | thread_pthread.c | 84 void **pointers = arg; in thread_local_destructor() local 87 destructors[i](pointers[i]); in thread_local_destructor() 91 free(pointers); in thread_local_destructor() 109 void **pointers = pthread_getspecific(g_thread_local_key); in CRYPTO_get_thread_local() local 110 if (pointers == NULL) { in CRYPTO_get_thread_local() 113 return pointers[index]; in CRYPTO_get_thread_local() 124 void **pointers = pthread_getspecific(g_thread_local_key); in CRYPTO_set_thread_local() local 125 if (pointers == NULL) { in CRYPTO_set_thread_local() 126 pointers = malloc(sizeof(void *) * NUM_OPENSSL_THREAD_LOCALS); in CRYPTO_set_thread_local() 127 if (pointers == NULL) { in CRYPTO_set_thread_local() [all …]
|
| D | thread_win.c | 93 void **pointers = (void**) TlsGetValue(g_thread_local_key); in thread_local_destructor() local 94 if (pointers == NULL) { in thread_local_destructor() 106 destructors[i](pointers[i]); in thread_local_destructor() 110 free(pointers); in thread_local_destructor() 138 // .CRT$XLA to .CRT$XLZ is an array of PIMAGE_TLS_CALLBACK pointers that are 198 void **pointers = get_thread_locals(); in CRYPTO_get_thread_local() local 199 if (pointers == NULL) { in CRYPTO_get_thread_local() 202 return pointers[index]; in CRYPTO_get_thread_local() 213 void **pointers = get_thread_locals(); in CRYPTO_set_thread_local() local 214 if (pointers == NULL) { in CRYPTO_set_thread_local() [all …]
|
| /external/abseil-cpp/absl/base/ |
| D | nullability.h | 20 // expected nullability of pointers. These annotations allow you to designate 21 // pointers in one of three classification states: 23 // * "Non-null" (for pointers annotated `Nonnull<T>`), indicating that it is 25 // * "Nullable" (for pointers annotated `Nullable<T>`), indicating that it is 27 // * "Unknown" (for pointers annotated `NullabilityUnknown<T>`), indicating 29 // non-null. This is the default state of unannotated pointers. 31 // NOTE: unannotated pointers implicitly bear the annotation 55 // pointers to have more confidence in their null state. If a function declares 61 // of pointers, and these expectations are, in effect, a contract; often, 75 // consumers of these pointers across API boundaries to take appropriate steps [all …]
|
| /external/libtextclassifier/abseil-cpp/absl/base/ |
| D | nullability.h | 20 // expected nullability of pointers. These annotations allow you to designate 21 // pointers in one of three classification states: 23 // * "Non-null" (for pointers annotated `Nonnull<T>`), indicating that it is 25 // * "Nullable" (for pointers annotated `Nullable<T>`), indicating that it is 27 // * "Unknown" (for pointers annotated `NullabilityUnknown<T>`), indicating 29 // non-null. This is the default state of unannotated pointers. 31 // NOTE: unannotated pointers implicitly bear the annotation 55 // pointers to have more confidence in their null state. If a function declares 61 // of pointers, and these expectations are, in effect, a contract; often, 75 // consumers of these pointers across API boundaries to take appropriate steps [all …]
|
| /external/cronet/third_party/abseil-cpp/absl/base/ |
| D | nullability.h | 20 // expected nullability of pointers. These annotations allow you to designate 21 // pointers in one of three classification states: 23 // * "Non-null" (for pointers annotated `Nonnull<T>`), indicating that it is 25 // * "Nullable" (for pointers annotated `Nullable<T>`), indicating that it is 27 // * "Unknown" (for pointers annotated `NullabilityUnknown<T>`), indicating 29 // non-null. This is the default state of unannotated pointers. 31 // NOTE: unannotated pointers implicitly bear the annotation 55 // pointers to have more confidence in their null state. If a function declares 61 // of pointers, and these expectations are, in effect, a contract; often, 75 // consumers of these pointers across API boundaries to take appropriate steps [all …]
|
| /external/angle/third_party/abseil-cpp/absl/base/ |
| D | nullability.h | 20 // expected nullability of pointers. These annotations allow you to designate 21 // pointers in one of three classification states: 23 // * "Non-null" (for pointers annotated `Nonnull<T>`), indicating that it is 25 // * "Nullable" (for pointers annotated `Nullable<T>`), indicating that it is 27 // * "Unknown" (for pointers annotated `NullabilityUnknown<T>`), indicating 29 // non-null. This is the default state of unannotated pointers. 31 // NOTE: unannotated pointers implicitly bear the annotation 55 // pointers to have more confidence in their null state. If a function declares 61 // of pointers, and these expectations are, in effect, a contract; often, 75 // consumers of these pointers across API boundaries to take appropriate steps [all …]
|
| /external/rust/crates/memchr/src/arch/wasm32/ |
| D | memchr.rs | 35 /// memchr, but using raw pointers to represent the haystack. 39 /// Pointers must be valid. See `One::find_raw`. 49 /// memrchr, but using raw pointers to represent the haystack. 53 /// Pointers must be valid. See `One::rfind_raw`. 63 /// memchr2, but using raw pointers to represent the haystack. 67 /// Pointers must be valid. See `Two::find_raw`. 78 /// memrchr2, but using raw pointers to represent the haystack. 82 /// Pointers must be valid. See `Two::rfind_raw`. 93 /// memchr3, but using raw pointers to represent the haystack. 97 /// Pointers must be valid. See `Three::find_raw`. [all …]
|
| /external/rust/crates/memchr/src/arch/aarch64/ |
| D | memchr.rs | 35 /// memchr, but using raw pointers to represent the haystack. 39 /// Pointers must be valid. See `One::find_raw`. 49 /// memrchr, but using raw pointers to represent the haystack. 53 /// Pointers must be valid. See `One::rfind_raw`. 63 /// memchr2, but using raw pointers to represent the haystack. 67 /// Pointers must be valid. See `Two::find_raw`. 78 /// memrchr2, but using raw pointers to represent the haystack. 82 /// Pointers must be valid. See `Two::rfind_raw`. 93 /// memchr3, but using raw pointers to represent the haystack. 97 /// Pointers must be valid. See `Three::find_raw`. [all …]
|
| /external/rust/crates/quiche/deps/boringssl/src/crypto/ |
| D | thread_pthread.c | 116 void **pointers = arg; in thread_local_destructor() local 119 destructors[i](pointers[i]); in thread_local_destructor() 123 OPENSSL_free(pointers); in thread_local_destructor() 141 void **pointers = pthread_getspecific(g_thread_local_key); in CRYPTO_get_thread_local() local 142 if (pointers == NULL) { in CRYPTO_get_thread_local() 145 return pointers[index]; in CRYPTO_get_thread_local() 156 void **pointers = pthread_getspecific(g_thread_local_key); in CRYPTO_set_thread_local() local 157 if (pointers == NULL) { in CRYPTO_set_thread_local() 158 pointers = OPENSSL_malloc(sizeof(void *) * NUM_OPENSSL_THREAD_LOCALS); in CRYPTO_set_thread_local() 159 if (pointers == NULL) { in CRYPTO_set_thread_local() [all …]
|
| D | thread_win.c | 117 void **pointers = (void**) TlsGetValue(g_thread_local_key); in thread_local_destructor() local 118 if (pointers == NULL) { in thread_local_destructor() 130 destructors[i](pointers[i]); in thread_local_destructor() 134 OPENSSL_free(pointers); in thread_local_destructor() 162 // .CRT$XLA to .CRT$XLZ is an array of PIMAGE_TLS_CALLBACK pointers that are 222 void **pointers = get_thread_locals(); in CRYPTO_get_thread_local() local 223 if (pointers == NULL) { in CRYPTO_get_thread_local() 226 return pointers[index]; in CRYPTO_get_thread_local() 237 void **pointers = get_thread_locals(); in CRYPTO_set_thread_local() local 238 if (pointers == NULL) { in CRYPTO_set_thread_local() [all …]
|
| /external/clang/test/SemaOpenCL/ |
| D | address-spaces-conversions-cl2.0.cl | 5 /* OpenCLC v2.0 adds a set of restrictions for conversions between pointers to 9 * an unnamed address space is added, called '__generic'. Pointers to the 10 * generic address space can be interchangabley used with pointers to any 160 …comparison between ('__constant int *' and '__global int *') which are pointers to non-overlappin… 165 … between ('__{{global|constant}} int *' and '__local int *') which are pointers to non-overlappin… 170 …etween ('__{{global|generic}} int *' and '__constant int *') which are pointers to non-overlappin… 175 …mparison between ('__{{global|constant}} int *' and 'int *') which are pointers to non-overlappin… 180 …omparison between ('__constant int *' and '__generic int *') which are pointers to non-overlappin… 186 …h operands of type ('__constant int *' and '__global int *') which are pointers to non-overlappin… 191 … of type ('__{{global|constant}} int *' and '__local int *') which are pointers to non-overlappin… [all …]
|
| /external/brotli/c/enc/ |
| D | memory.c | 110 SortPointers(m->pointers + NEW_ALLOCATED_OFFSET, m->new_allocated); in CollectGarbagePointers() 111 SortPointers(m->pointers + NEW_FREED_OFFSET, m->new_freed); in CollectGarbagePointers() 113 m->pointers + NEW_ALLOCATED_OFFSET, m->new_allocated, in CollectGarbagePointers() 114 m->pointers + NEW_FREED_OFFSET, m->new_freed); in CollectGarbagePointers() 120 m->pointers + PERM_ALLOCATED_OFFSET, m->perm_allocated, in CollectGarbagePointers() 121 m->pointers + NEW_FREED_OFFSET, m->new_freed); in CollectGarbagePointers() 129 memcpy(m->pointers + PERM_ALLOCATED_OFFSET + m->perm_allocated, in CollectGarbagePointers() 130 m->pointers + NEW_ALLOCATED_OFFSET, in CollectGarbagePointers() 134 SortPointers(m->pointers + PERM_ALLOCATED_OFFSET, m->perm_allocated); in CollectGarbagePointers() 145 m->pointers[NEW_ALLOCATED_OFFSET + (m->new_allocated++)] = result; in BrotliAllocate() [all …]
|
| /external/libcap/libcap/ |
| D | _makenames.c | 41 const char **pointers = NULL; in main() local 48 if (pointers == NULL || list[i].index >= pointers_avail) { in main() 51 pointers = recalloc(pointers, was, pointers_avail * sizeof(char *)); in main() 52 if (pointers == NULL) { in main() 57 pointers[list[i].index] = list[i].name; in main() 76 if (pointers[i]) { in main() 77 printf(" /* %d */\t\"%s\", \\\n", i, pointers[i]); in main() 88 free(pointers); in main()
|
| /external/cronet/third_party/brotli/enc/ |
| D | memory.c | 110 SortPointers(m->pointers + NEW_ALLOCATED_OFFSET, m->new_allocated); in CollectGarbagePointers() 111 SortPointers(m->pointers + NEW_FREED_OFFSET, m->new_freed); in CollectGarbagePointers() 113 m->pointers + NEW_ALLOCATED_OFFSET, m->new_allocated, in CollectGarbagePointers() 114 m->pointers + NEW_FREED_OFFSET, m->new_freed); in CollectGarbagePointers() 120 m->pointers + PERM_ALLOCATED_OFFSET, m->perm_allocated, in CollectGarbagePointers() 121 m->pointers + NEW_FREED_OFFSET, m->new_freed); in CollectGarbagePointers() 129 memcpy(m->pointers + PERM_ALLOCATED_OFFSET + m->perm_allocated, in CollectGarbagePointers() 130 m->pointers + NEW_ALLOCATED_OFFSET, in CollectGarbagePointers() 134 SortPointers(m->pointers + PERM_ALLOCATED_OFFSET, m->perm_allocated); in CollectGarbagePointers() 145 m->pointers[NEW_ALLOCATED_OFFSET + (m->new_allocated++)] = result; in BrotliAllocate() [all …]
|
| /external/rust/crates/memchr/src/arch/x86_64/ |
| D | memchr.rs | 34 /// We use raw pointers here instead of the more obvious `haystack: &[u8]` so 36 /// operates on raw pointers. We use this macro to implement "raw" memchr 57 /// correspond to valid pointers. 168 /// memchr, but using raw pointers to represent the haystack. 172 /// Pointers must be valid. See `One::find_raw`. 191 /// memrchr, but using raw pointers to represent the haystack. 195 /// Pointers must be valid. See `One::rfind_raw`. 214 /// memchr2, but using raw pointers to represent the haystack. 218 /// Pointers must be valid. See `Two::find_raw`. 239 /// memrchr2, but using raw pointers to represent the haystack. [all …]
|
| /external/python/cpython2/Include/ |
| D | pyarena.h | 15 to allocate memory via PyArena_Malloc(). Pointers to PyObject can 20 PyObject*, and none of its pointers are valid. 21 XXX (tim) What does "none of its pointers are valid" mean? Does it 22 XXX mean that pointers previously obtained via PyArena_Malloc() are 42 * returned may equal one or more other pointers obtained from 44 * Note that pointers obtained via PyArena_Malloc() must never be passed to 46 * management functions. PyArena_Malloc()-obtained pointers remain valid 47 * until PyArena_Free(ar) is called, at which point all pointers obtained
|
| /external/python/cpython3/Include/internal/ |
| D | pycore_pyarena.h | 18 to allocate memory via _PyArena_Malloc(). Pointers to PyObject can 23 PyObject*, and none of its pointers are valid. 24 XXX (tim) What does "none of its pointers are valid" mean? Does it 25 XXX mean that pointers previously obtained via _PyArena_Malloc() are 45 * returned may equal one or more other pointers obtained from 47 * Note that pointers obtained via _PyArena_Malloc() must never be passed to 49 * management functions. _PyArena_Malloc()-obtained pointers remain valid 50 * until _PyArena_Free(ar) is called, at which point all pointers obtained
|
| /external/rust/crates/memchr/src/arch/wasm32/simd128/ |
| D | memchr.rs | 91 // falls within the bounds of the start and end pointers. in find() 107 // falls within the bounds of the start and end pointers. in rfind() 118 // SAFETY: All of our pointers are derived directly from a borrowed in count() 127 /// Like `find`, but accepts and returns raw pointers. 132 /// This routine is useful if you're already using raw pointers and would 148 /// Note that callers may pass a pair of pointers such that `start >= end`. 160 // SAFETY: We require the caller to pass valid start/end pointers. in find_raw() 171 /// Like `rfind`, but accepts and returns raw pointers. 176 /// This routine is useful if you're already using raw pointers and would 192 /// Note that callers may pass a pair of pointers such that `start >= end`. [all …]
|
| /external/rust/crates/memchr/src/arch/aarch64/neon/ |
| D | memchr.rs | 96 // falls within the bounds of the start and end pointers. in find() 112 // falls within the bounds of the start and end pointers. in rfind() 123 // SAFETY: All of our pointers are derived directly from a borrowed in count() 132 /// Like `find`, but accepts and returns raw pointers. 137 /// This routine is useful if you're already using raw pointers and would 153 /// Note that callers may pass a pair of pointers such that `start >= end`. 165 // SAFETY: We require the caller to pass valid start/end pointers. in find_raw() 176 /// Like `rfind`, but accepts and returns raw pointers. 181 /// This routine is useful if you're already using raw pointers and would 197 /// Note that callers may pass a pair of pointers such that `start >= end`. [all …]
|
| /external/sdv/vsomeip/third_party/boost/iterator/example/ |
| D | counting_iterator_example.cpp | 24 // Example of using counting iterator to create an array of pointers. in main() 34 std::vector<std::vector<int>::iterator> pointers; in main() local 36 // Use counting iterator to fill in the array of pointers. in main() 40 std::back_inserter(pointers)); in main() 43 // them through the array of pointers. in main() 46 std::copy(boost::make_indirect_iterator(pointers.begin()), in main() 47 boost::make_indirect_iterator(pointers.end()), in main()
|
| /external/pigweed/pw_allocator/public/pw_allocator/ |
| D | test_harness.h | 49 /// Associates an `Allocator` with a vector to store allocated pointers. 57 /// size of the vector used to store allocated pointers. 90 /// This method is stateful, and modifies the vector of allocated pointers. 106 /// Deallocates any pointers stored in the vector of allocated pointers. 122 /// Adds a pointer to the vector of allocated pointers. 124 /// The `ptr` must not be null, and the vector of allocated pointers must not 135 /// The vector of allocated pointers must not be empty. 141 /// A vector of allocated pointers. 148 /// Associates an `Allocator` with a vector to store allocated pointers. 151 /// parameter to explicitly size the vector used to store allocated pointers.
|