Home
last modified time | relevance | path

Searched refs:myptr (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython3/Objects/
Dbytearrayobject.c1847 lstrip_helper(const char *myptr, Py_ssize_t mysize, in lstrip_helper() argument
1851 while (i < mysize && memchr(argptr, (unsigned char) myptr[i], argsize)) in lstrip_helper()
1857 rstrip_helper(const char *myptr, Py_ssize_t mysize, in rstrip_helper() argument
1861 while (i >= 0 && memchr(argptr, (unsigned char) myptr[i], argsize)) in rstrip_helper()
1882 char *myptr; in bytearray_strip_impl() local
1896 myptr = PyByteArray_AS_STRING(self); in bytearray_strip_impl()
1898 left = lstrip_helper(myptr, mysize, bytesptr, byteslen); in bytearray_strip_impl()
1902 right = rstrip_helper(myptr, mysize, bytesptr, byteslen); in bytearray_strip_impl()
1905 return PyByteArray_FromStringAndSize(myptr + left, right - left); in bytearray_strip_impl()
1924 char *myptr; in bytearray_lstrip_impl() local
[all …]
/external/python/cpython2/Objects/
Dbytearrayobject.c2443 lstrip_helper(unsigned char *myptr, Py_ssize_t mysize, in lstrip_helper() argument
2447 while (i < mysize && memchr(argptr, myptr[i], argsize)) in lstrip_helper()
2453 rstrip_helper(unsigned char *myptr, Py_ssize_t mysize, in rstrip_helper() argument
2457 while (i >= 0 && memchr(argptr, myptr[i], argsize)) in rstrip_helper()
2471 void *myptr, *argptr; in bytearray_strip() local
2486 myptr = self->ob_bytes; in bytearray_strip()
2488 left = lstrip_helper(myptr, mysize, argptr, argsize); in bytearray_strip()
2492 right = rstrip_helper(myptr, mysize, argptr, argsize); in bytearray_strip()
2507 void *myptr, *argptr; in bytearray_lstrip() local
2522 myptr = self->ob_bytes; in bytearray_lstrip()
[all …]
/external/icu/icu4c/source/test/cintltst/
Dccapitst.c240 char myptr[4]; in TestConvert() local
605 ucnv_getSubstChars(myConverter, myptr, &ii, &err); in TestConvert()
611 rest = (uint16_t)(((unsigned char)rest << 8) + (unsigned char)myptr[x]); in TestConvert()
618 ucnv_setSubstChars(myConverter, myptr, ii, &err); in TestConvert()
629 if (strncmp(save, myptr, ii)) in TestConvert()
637 ucnv_getSubstChars(myConverter, myptr, &ii, &err); in TestConvert()
643 ucnv_getSubstChars(myConverter, myptr, &ii, &err); in TestConvert()
645 ucnv_setSubstChars(myConverter, myptr, 0, &err); in TestConvert()
650 strcpy(myptr, "abc"); in TestConvert()
651 ucnv_setSubstChars(myConverter, myptr, ii, &err); in TestConvert()
[all …]
/external/clang/test/SemaCXX/
Dwarn-unused-local-typedef.cpp39 foo6 *myptr; in f() local
/external/llvm-project/clang/test/SemaCXX/
Dwarn-unused-local-typedef.cpp39 foo6 *myptr; in f() local
/external/python/cffi/doc/source/
Dref.rst271 * ``ffi.memmove(myptr, b"hello", 5)`` copies the 5 bytes of
272 ``b"hello"`` to the area that ``myptr`` points to.
274 * ``ba = bytearray(100); ffi.memmove(ba, myptr, 100)`` copies 100
275 bytes from ``myptr`` into the bytearray ``ba``.
277 * ``ffi.memmove(myptr + 1, myptr, 100)`` shifts 100 bytes from
278 the memory at ``myptr`` to the memory at ``myptr + 1``.
/external/mesa3d/src/vulkan/wsi/
Dwsi_common_x11.c1071 void *myptr; in x11_present_to_x11_sw() local
1074 0, 0, 0, &myptr); in x11_present_to_x11_sw()
1083 myptr); in x11_present_to_x11_sw()
/external/llvm/test/CodeGen/X86/
Dblock-placement.ll329 %myptr = phi i32* [ %ptr2, %loop.body5 ], [ %ptr, %loop.body2 ], [ undef, %loop.body1 ]
330 %bcmyptr = bitcast i32* %myptr to i32*
/external/llvm-project/llvm/test/CodeGen/X86/
Dblock-placement.ll338 %myptr = phi i32* [ %ptr2, %loop.body5 ], [ %ptr, %loop.body2 ], [ undef, %loop.body1 ]
339 %bcmyptr = bitcast i32* %myptr to i32*
/external/virglrenderer/src/
Dvrend_renderer.c7824 char *myptr = (char*)iov[0].iov_base + info->offset; in vrend_transfer_send_readpixels() local
7879 data = myptr; in vrend_transfer_send_readpixels()