Home
last modified time | relevance | path

Searched refs:ptrptr (Results 1 – 6 of 6) sorted by relevance

/external/clang/test/Sema/
Dwarn-cast-qual.c7 const char * const *ptrptr = 0; in foo() local
9 …char **y1 = (char **)ptrptr; // expected-warning {{cast from 'const char *const' to 'char *' drops… in foo()
10 …const char **y2 = (const char **)ptrptr; // expected-warning {{cast from 'const char *const *' to … in foo()
/external/clang/test/Analysis/
Dsymbol-reaper.c69 int **ptrptr; variable
73 ptrptr = &x; in test_region_lifetime_as_store_value()
75 clang_analyzer_eval(**ptrptr); // expected-warning{{TRUE}} in test_region_lifetime_as_store_value()
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/Scalarizer/
Dvector-gep.ll8 @ptrptr = global i16* null
85 %0 = load i16*, i16** @ptrptr
92 ;CHECK: %0 = load i16*, i16** @ptrptr
/external/pcre/dist2/src/
Dpcre2_substitute.c78 find_text_end(const pcre2_code *code, PCRE2_SPTR *ptrptr, PCRE2_SPTR ptrend, in find_text_end() argument
84 PCRE2_SPTR ptr = *ptrptr; in find_text_end()
160 *ptrptr = ptr; in find_text_end()
Dpcre2_compile.c1236 read_number(PCRE2_SPTR *ptrptr, PCRE2_SPTR ptrend, int32_t allow_sign, in read_number() argument
1241 PCRE2_SPTR ptr = *ptrptr; in read_number()
1293 *ptrptr = ptr; in read_number()
1322 read_repeat_counts(PCRE2_SPTR *ptrptr, PCRE2_SPTR ptrend, uint32_t *minp, in read_repeat_counts() argument
1325 PCRE2_SPTR p = *ptrptr; in read_repeat_counts()
1369 if (yield || *errorcodeptr != 0) *ptrptr = p; in read_repeat_counts()
1410 PRIV(check_escape)(PCRE2_SPTR *ptrptr, PCRE2_SPTR ptrend, uint32_t *chptr, in PRIV()
1414 PCRE2_SPTR ptr = *ptrptr; in PRIV()
1902 *ptrptr = ptr - 1; /* Point to the character at fault */ in PRIV()
1909 *ptrptr = ptr; in PRIV()
[all …]
/external/python/cpython2/Doc/c-api/
Dtypeobj.rst1409 .. c:type:: Py_ssize_t (*readbufferproc) (PyObject *self, Py_ssize_t segment, void **ptrptr)
1411 Return a pointer to a readable segment of the buffer in ``*ptrptr``. This
1416 ``*ptrptr`` to a pointer to that memory.
1419 .. c:type:: Py_ssize_t (*writebufferproc) (PyObject *self, Py_ssize_t segment, void **ptrptr)
1421 Return a pointer to a writable memory buffer in ``*ptrptr``, and the length of
1440 .. c:type:: Py_ssize_t (*charbufferproc) (PyObject *self, Py_ssize_t segment, char **ptrptr)
1442 Return the size of the segment *segment* that *ptrptr* is set to. ``*ptrptr``