HomeSort by relevance Sort by last modified time
    Searched defs:ssize_t (Results 1 - 25 of 191) sorted by null

1 2 3 4 5 6 7 8

  /external/clang/test/Sema/
format-strings-fixit-ssize_t.c 14 typedef signed long int ssize_t; typedef
15 printf("%f", (ssize_t) 42);
18 // CHECK: printf("%zd", (ssize_t) 42);
darwin-align-cast.c 6 typedef __darwin_ssize_t ssize_t; typedef
19 ssize_t sendFileDescriptor(int fd, void *data, size_t nbytes, int sendfd) {
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
monetary.h 32 typedef __ssize_t ssize_t; typedef
40 extern ssize_t strfmon (char *__restrict __s, size_t __maxsize,
48 extern ssize_t strfmon_l (char *__restrict __s, size_t __maxsize,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
monetary.h 32 typedef __ssize_t ssize_t; typedef
40 extern ssize_t strfmon (char *__restrict __s, size_t __maxsize,
48 extern ssize_t strfmon_l (char *__restrict __s, size_t __maxsize,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
monetary.h 32 typedef __ssize_t ssize_t; typedef
40 extern ssize_t strfmon (char *__restrict __s, size_t __maxsize,
48 extern ssize_t strfmon_l (char *__restrict __s, size_t __maxsize,
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
ostypes.h 15 typedef SSIZE_T ssize_t; typedef
  /external/clang/test/Analysis/
taint-tester.cpp 7 typedef long ssize_t; typedef
8 ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
13 ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
20 ssize_t read;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
msg.h 44 typedef __ssize_t ssize_t; typedef
73 extern ssize_t msgrcv (int __msqid, void *__msgp, size_t __msgsz,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/
msg.h 44 typedef __ssize_t ssize_t; typedef
73 extern ssize_t msgrcv (int __msqid, void *__msgp, size_t __msgsz,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
msg.h 44 typedef __ssize_t ssize_t; typedef
73 extern ssize_t msgrcv (int __msqid, void *__msgp, size_t __msgsz,
  /external/chromium_org/base/strings/
safe_sprintf.h 15 // 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();
178 BASE_EXPORT ssize_t SafeSNPrintf(char* buf, size_t sz, const char* fmt,
184 // use, this constant should always be std::numeric_limits<ssize_t>::max().
196 ssize_t SafeSNPrintf(char* buf, size_t N, const char* fmt,
210 ssize_t SafeSPrintf(char (&buf)[N], const char* fmt,
223 ssize_t SafeSNPrintf(char* buf, size_t N, const char* fmt
    [all...]
  /external/chromium_org/third_party/snappy/win32/
snappy-stubs-public.h 96 // MSVC does not have ssize_t by default; autoconf suggests defining as `int'.
99 typedef SSIZE_T ssize_t; typedef in namespace:snappy
  /external/chromium_org/third_party/leveldatabase/port/
port_chromium.h 25 typedef SSIZE_T ssize_t; typedef
  /external/e2fsprogs/lib/ext2fs/
imager.c 37 typedef int ssize_t; typedef
66 ssize_t actual;
113 if (actual != (ssize_t) (fs->blocksize * d)) {
140 ssize_t actual;
163 if (actual != (ssize_t) (fs->blocksize * c)) {
189 ssize_t actual;
206 if (actual != (ssize_t) fs->blocksize) {
220 if (actual != (ssize_t) (fs->blocksize * fs->desc_blocks)) {
239 ssize_t actual, size;
282 ssize_t actual
    [all...]
  /bionic/libc/include/sys/
types.h 88 /* Traditionally, bionic's ssize_t was "long int". This caused GCC to emit warnings when you
89 * pass a ssize_t to a printf-style function. The correct type is __kernel_ssize_t, which is
93 typedef __kernel_ssize_t ssize_t; typedef
  /external/ceres-solver/include/ceres/internal/
fixed_array.h 73 typedef __int64 ssize_t; typedef in namespace:ceres::internal
75 typedef __int32 ssize_t;
78 template <typename T, ssize_t inline_elements = -1>
165 template <class T, ssize_t S>
181 template <class T, ssize_t S>
  /development/ndk/platforms/android-3/include/sys/
types.h 90 typedef long int ssize_t; typedef
  /external/chromium_org/third_party/openssl/openssl/
e_os2.h 301 # define ssize_t int macro
304 #if defined(__ultrix) && !defined(ssize_t)
309 # define ossl_ssize_t ssize_t
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
e_os2.h 301 # define ssize_t int macro
304 #if defined(__ultrix) && !defined(ssize_t)
309 # define ossl_ssize_t ssize_t
  /external/llvm/include/llvm/Support/
DataTypes.h 114 typedef signed int ssize_t; typedef
  /external/openssl/
e_os2.h 301 # define ssize_t int macro
304 #if defined(__ultrix) && !defined(ssize_t)
309 # define ossl_ssize_t ssize_t
  /external/openssl/include/openssl/
e_os2.h 301 # define ssize_t int macro
304 #if defined(__ultrix) && !defined(ssize_t)
309 # define ossl_ssize_t ssize_t
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/include-fixed/sys/
types.h 109 typedef long int ssize_t; typedef
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.7/lib/gcc/arm-linux-androideabi/4.7/include-fixed/sys/
types.h 109 typedef long int ssize_t; typedef
  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.6/lib/gcc/mipsel-linux-android/4.6/include-fixed/sys/
types.h 109 typedef long int ssize_t; typedef

Completed in 1815 milliseconds

1 2 3 4 5 6 7 8