Searched refs:ptrdiff_t (Results 1 - 25 of 587) sorted by last modified time

1234567891011>>

/external/zlib/src/
H A Dcrc32.c217 if (sizeof(void *) == sizeof(ptrdiff_t)) {
257 while (len && ((ptrdiff_t)buf & 3)) {
297 while (len && ((ptrdiff_t)buf & 3)) {
H A Dzutil.h33 typedef long ptrdiff_t; /* guess -- will be caught if guess is wrong */ typedef
156 typedef int ptrdiff_t; typedef
/external/zlib/
H A Dzutil.h33 typedef long ptrdiff_t; /* guess -- will be caught if guess is wrong */ typedef
156 typedef int ptrdiff_t; typedef
/external/webrtc/src/system_wrappers/interface/
H A Datomic32.h56 return (reinterpret_cast<ptrdiff_t>(&_value) & 3) == 0;
H A Dscoped_ptr.h31 #include <cstddef> // for std::ptrdiff_t
34 namespace std { using ::ptrdiff_t; };
152 T& operator[](std::ptrdiff_t i) const {
/external/valgrind/main/perf/
H A Dtest_input_for_tinycc.c5586 typedef int ptrdiff_t; typedef
5619 extern void * (*__morecore) (ptrdiff_t __size);
5622 extern void * __default_morecore (ptrdiff_t __size) __attribute__ ((__nothrow__))
/external/vixl/src/a64/
H A Dassembler-a64.cc271 MemOperand::MemOperand(Register base, ptrdiff_t offset, AddrMode addrmode)
1842 ptrdiff_t offset = addr.offset();
1889 bool Assembler::IsImmLSUnscaled(ptrdiff_t offset) {
1894 bool Assembler::IsImmLSScaled(ptrdiff_t offset, LSDataSize size) {
H A Dassembler-a64.h538 ptrdiff_t offset = 0,
554 ptrdiff_t offset() const { return offset_; }
567 ptrdiff_t offset_;
1705 static bool IsImmLSUnscaled(ptrdiff_t offset);
1706 static bool IsImmLSScaled(ptrdiff_t offset, LSDataSize size);
H A Dinstructions-a64.cc152 ptrdiff_t offset;
/external/vixl/test/
H A Dtest-assembler-a64.cc2691 static void LdrLiteralRangeHelper(ptrdiff_t range_,
/external/webp/src/dec/
H A Didec.c110 static void DoRemap(WebPIDecoder* const idec, ptrdiff_t offset) {
H A Dvp8l.c885 if (src - data < (ptrdiff_t)dist || src_end - src < (ptrdiff_t)length) {
/external/webp/src/utils/
H A Dbit_reader.c37 void VP8RemapBitReader(VP8BitReader* const br, ptrdiff_t offset) {
H A Dbit_reader.h86 void VP8RemapBitReader(VP8BitReader* const br, ptrdiff_t offset);
/external/valgrind/main/coregrind/m_debuginfo/
H A Dlzodefs.h126 # define ptrdiff_t long macro
H A Dminilzo-inl.c150 # define ptrdiff_t long macro
2256 ptrdiff_t a_ptrdiff_t;
/external/valgrind/main/drd/tests/
H A Dthread_name.c21 const int thread_num = (ptrdiff_t)(argp);
56 pthread_create(&tid[i], 0, thread_func, (void*)(ptrdiff_t)i);
/external/tinyxml/
H A Dtinyxmlparser.cpp429 ptrdiff_t delta = 0;
/external/stlport/src/
H A Dcodecvt.cpp90 ptrdiff_t len = (min) (from_end - from, to_limit - to);
105 ptrdiff_t len = (min) (from_end - from, to_limit - to);
H A Dfstream.cpp79 __STATIC_CAST(char*, __this->_M_mmap_base) + __STATIC_CAST(ptrdiff_t, __remainder),
80 __STATIC_CAST(char*, __this->_M_mmap_base) + __STATIC_CAST(ptrdiff_t, __this->_M_mmap_len));
H A Dnum_get_float.cpp334 static double _Stl_atod(char *buffer, ptrdiff_t ndigit, int dexp) {
483 D _Stl_atodT(char *buffer, ptrdiff_t ndigit, int dexp)
722 ptrdiff_t n = d - digits;
826 ptrdiff_t n = d - digits;
H A Dnum_put.cpp30 static ptrdiff_t
134 ptrdiff_t _STLP_CALL
148 ptrdiff_t _STLP_CALL
/external/stlport/src/details/
H A Dfstream_stdio.cpp317 ptrdiff_t _Filebuf_base::_M_read(char* buf, ptrdiff_t n) {
323 bool _Filebuf_base::_M_write(char* buf, ptrdiff_t n)
326 ptrdiff_t written = fwrite(buf, 1, n, _M_file);
H A Dfstream_unistd.cpp260 ptrdiff_t _Filebuf_base::_M_read(char* buf, ptrdiff_t n)
267 bool _Filebuf_base::_M_write(char* buf, ptrdiff_t n)
270 ptrdiff_t written = write(_M_file_id, buf, n);
H A Dfstream_win32io.cpp389 ptrdiff_t _Filebuf_base::_M_read(char* buf, ptrdiff_t n) {
390 ptrdiff_t readen = 0;
464 bool _Filebuf_base::_M_write(char* buf, ptrdiff_t n) {
466 ptrdiff_t written;
468 //In the following implementation we are going to cast most of the ptrdiff_t
497 ptrdiff_t nextblocksize = (min) (n, (ptrdiff_t)_TEXTBUF_SIZE);
502 ptrdiff_t linelength = nextlf - nextblock;
508 nextblocksize = (min) (ptrdiff_t(endbloc
[all...]

Completed in 365 milliseconds

1234567891011>>