Searched defs:ssize_t (Results 1 - 25 of 27) sorted by path

12

/external/bison/lib/
H A Dconfig.in.h2237 #undef ssize_t macro
/external/ceres-solver/include/ceres/internal/
H A Dfixed_array.h73 typedef __int64 ssize_t; typedef in namespace:ceres::internal
75 typedef __int32 ssize_t;
78 template <typename T, ssize_t inline_elements = -1>
163 template <class T, ssize_t S>
177 template <class T, ssize_t S>
/external/chromium_org/base/strings/
H A Dsafe_sprintf.h15 // For ssize_t
26 // Define ssize_t inside of our namespace.
28 typedef __int64 ssize_t; typedef in namespace:base::strings
30 typedef long ssize_t;
119 // const size_t kMaxSize = std::numeric_limits<ssize_t>::max();
208 BASE_EXPORT ssize_t SafeSNPrintf(char* buf, size_t sz, const char* fmt,
214 // use, this constant should always be std::numeric_limits<ssize_t>::max().
226 ssize_t SafeSNPrintf(char* buf, size_t N, const char* fmt,
240 ssize_t SafeSPrintf(char (&buf)[N], const char* fmt,
253 ssize_t SafeSNPrint
[all...]
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dostypes.h15 typedef SSIZE_T ssize_t; typedef
/external/chromium_org/ppapi/tests/
H A Dtest_file_io.cc38 # define ssize_t int macro
1041 ssize_t cnt = write(fd, msg.data(), msg.size());
1044 if (cnt != static_cast<ssize_t>(msg.size()))
1065 if (cnt != static_cast<ssize_t>(msg.size()))
1143 ssize_t cnt = write(fd, msg.data(), msg.size());
1146 if (cnt != static_cast<ssize_t>(msg.size()))
/external/chromium_org/third_party/leveldatabase/port/
H A Dport_chromium.h25 typedef SSIZE_T ssize_t; typedef
/external/chromium_org/third_party/libusb/src/libusb/
H A Dlibusb.h38 /* ssize_t is also not available (copy/paste from MinGW) */
41 #undef ssize_t macro
43 typedef __int64 ssize_t; typedef
45 typedef int ssize_t; typedef
1315 ssize_t LIBUSB_CALL libusb_get_device_list(libusb_context *ctx,
/external/chromium_org/third_party/snappy/win32/
H A Dsnappy-stubs-public.h96 // MSVC does not have ssize_t by default; autoconf suggests defining as `int'.
100 typedef SSIZE_T ssize_t; typedef in namespace:snappy
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/
H A Dport.h116 /* I guess MSVC's <types.h> doesn't include ssize_t by default? */
118 typedef intptr_t ssize_t; typedef
368 inline ssize_t read(int fd, void *buf, size_t count) {
371 inline ssize_t write(int fd, const void *buf, size_t count) {
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/
H A Dport.h113 /* I guess MSVC's <types.h> doesn't include ssize_t by default? */
115 typedef intptr_t ssize_t; typedef
365 inline ssize_t read(int fd, void *buf, size_t count) {
368 inline ssize_t write(int fd, const void *buf, size_t count) {
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_os_userspace.h105 #define ssize_t __int64 macro
/external/chromium_org/third_party/usrsctp/usrsctplib/
H A Dusrsctp.h74 #define ssize_t __int64 macro
895 ssize_t
906 ssize_t
/external/clang/test/Analysis/
H A Dtaint-tester.c156 typedef long ssize_t; typedef
157 ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
164 ssize_t read;
H A Dtaint-tester.cpp7 typedef long ssize_t; typedef
8 ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
14 ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
21 ssize_t read;
/external/clang/test/Sema/
H A Dattr-bounded.c4 typedef long ssize_t; typedef
8 ssize_t read(int, void *, size_t)
H A Ddarwin-align-cast.c6 typedef __darwin_ssize_t ssize_t; typedef
19 ssize_t sendFileDescriptor(int fd, void *data, size_t nbytes, int sendfd) {
H A Dformat-strings-fixit-ssize_t.c14 typedef signed long int ssize_t; typedef
15 printf("%f", (ssize_t) 42);
18 // CHECK: printf("%zd", (ssize_t) 42);
/external/e2fsprogs/lib/ext2fs/
H A Dimager.c37 typedef int ssize_t; typedef
66 ssize_t actual;
118 if (actual != (ssize_t) (fs->blocksize * d)) {
145 ssize_t actual;
168 if (actual != (ssize_t) (fs->blocksize * c)) {
194 ssize_t actual;
211 if (actual != (ssize_t) fs->blocksize) {
225 if (actual != (ssize_t) (fs->blocksize * fs->desc_blocks)) {
244 ssize_t actual, size;
287 ssize_t actua
[all...]
/external/jemalloc/include/jemalloc/internal/
H A Djemalloc_internal_decls.h49 typedef intptr_t ssize_t; typedef
/external/libmtp/src/
H A Dlibmtp.h40 #define ssize_t SSIZE_T macro
/external/llvm/include/llvm/Support/
H A DDataTypes.h114 typedef signed int ssize_t; typedef
/external/mdnsresponder/mDNSShared/
H A DCommonServices.h471 // ssize_t is not defined on the following platforms so emulate it if not defined:
478 typedef int ssize_t; typedef
H A Ddnssd_ipc.h49 # define ssize_t int macro
/external/mksh/src/
H A Dsh.h242 typedef MKSH_TYPEDEF_SSIZE_T ssize_t; typedef
1081 ssize_t bsize; /* actual size of buf */
1082 ssize_t rbsize; /* size of buffer (1 if SHF_UNBUF) */
1083 ssize_t rnleft; /* read: how much data left in buffer */
1084 ssize_t wbsize; /* size of buffer (0 if SHF_UNBUF) */
1085 ssize_t wnleft; /* write: how much space left in buffer */
1242 ssize_t left;
1428 ssize_t more = ((xp) + (n)) - (xs).end; \
1874 ssize_t blocking_read(int, char *, size_t)
1891 struct shf *shf_sopen(char *, ssize_t, in
[all...]
/external/openssl/
H A De_os2.h301 # define ssize_t int macro
304 #if defined(__ultrix) && !defined(ssize_t)
309 # define ossl_ssize_t ssize_t

Completed in 6715 milliseconds

12