HomeSort by relevance Sort by last modified time
    Searched full:off_t (Results 1 - 25 of 1020) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
zlibdefs.h 6 #include <sys/types.h> /* for off_t */
7 #include <unistd.h> /* for SEEK_* and off_t */
9 # include <unixio.h> /* for off_t */
12 # define z_off_t off_t
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
zlibdefs.h 6 #include <sys/types.h> /* for off_t */
7 #include <unistd.h> /* for SEEK_* and off_t */
9 # include <unixio.h> /* for off_t */
12 # define z_off_t off_t
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
zlibdefs.h 6 #include <sys/types.h> /* for off_t */
7 #include <unistd.h> /* for SEEK_* and off_t */
9 # include <unixio.h> /* for off_t */
12 # define z_off_t off_t
  /external/bison/m4/
off_t.m4 0 # off_t.m4 serial 1
7 dnl Check whether to override the 'off_t' type.
  /external/skia/legacy/src/images/
SkFDStream.cpp 25 off_t value = ::lseek(fFD, 0, SEEK_SET);
39 off_t curr = ::lseek(fFD, 0, SEEK_CUR);
46 off_t size = ::lseek(fFD, 0, SEEK_END);
62 off_t oldCurr = ::lseek(fFD, 0, SEEK_CUR);
69 off_t newCurr = ::lseek(fFD, size, SEEK_CUR);
  /external/skia/src/images/
SkFDStream.cpp 25 off_t value = ::lseek(fFD, 0, SEEK_SET);
39 off_t curr = ::lseek(fFD, 0, SEEK_CUR);
46 off_t size = ::lseek(fFD, 0, SEEK_END);
62 off_t oldCurr = ::lseek(fFD, 0, SEEK_CUR);
69 off_t newCurr = ::lseek(fFD, size, SEEK_CUR);
  /bootable/recovery/applypatch/
bsdiff.c 60 static void split(off_t *I,off_t *V,off_t start,off_t len,off_t h)
62 off_t i,j,k,x,tmp,jj,kk;
121 static void qsufsort(off_t *I,off_t *V,u_char *old,off_t oldsize)
123 off_t buckets[256]
    [all...]
  /external/bsdiff/
bsdiff.c 43 static void split(off_t *I,off_t *V,off_t start,off_t len,off_t h)
45 off_t i,j,k,x,tmp,jj,kk;
104 static void qsufsort(off_t *I,off_t *V,u_char *old,off_t oldsize)
106 off_t buckets[256]
    [all...]
  /external/e2fsprogs/lib/blkid/
llseek.c 95 if ((sizeof(off_t) >= sizeof(blkid_loff_t)) ||
96 (offset < ((blkid_loff_t) 1 << ((sizeof(off_t)*8) -1))))
97 return lseek(fd, (off_t) offset, whence);
131 if ((sizeof(off_t) < sizeof(blkid_loff_t)) &&
132 (offset >= ((blkid_loff_t) 1 << ((sizeof(off_t)*8) - 1)))) {
136 return lseek(fd, (off_t) offset, origin);
  /external/e2fsprogs/lib/ext2fs/
llseek.c 95 if ((sizeof(off_t) >= sizeof(ext2_loff_t)) ||
96 (offset < ((ext2_loff_t) 1 << ((sizeof(off_t)*8) -1))))
97 return lseek(fd, (off_t) offset, origin);
127 if ((sizeof(off_t) < sizeof(ext2_loff_t)) &&
128 (offset >= ((ext2_loff_t) 1 << ((sizeof(off_t)*8) -1)))) {
132 return lseek (fd, (off_t) offset, origin);
  /build/tools/atree/
files.h 29 off_t sourceSize;
34 off_t outSize;
  /external/bison/darwin-lib/sys/
types.h 32 /* Override off_t if Large File Support is requested on native Windows. */
36 # define off_t __int64
38 # define off_t long long int
  /external/bison/linux-lib/sys/
types.h 32 /* Override off_t if Large File Support is requested on native Windows. */
36 # define off_t __int64
38 # define off_t long long int
  /external/expat/
ConfigureChecks.cmake 36 check_symbol_exists("off_t" "sys/types.h" OFF_T)
39 set(OFF_T "long")
  /external/linux-tools-perf/util/ui/
browser.h 23 void (*seek)(struct ui_browser *self, off_t offset, int whence);
45 void ui_browser__rb_tree_seek(struct ui_browser *self, off_t offset, int whence);
48 void ui_browser__list_head_seek(struct ui_browser *self, off_t offset, int whence);
  /frameworks/compile/libbcc/lib/Support/
FileBase.cpp 213 android::FileMap *FileBase::createMap(off_t pOffset, size_t pLength,
252 off_t FileBase::seek(off_t pOffset) {
254 return static_cast<off_t>(-1);
258 off_t result = ::lseek(mFD, pOffset, SEEK_SET);
265 return static_cast<off_t>(-1);
268 off_t FileBase::tell() {
270 return static_cast<off_t>(-1);
274 off_t result = ::lseek(mFD, 0, SEEK_CUR);
275 if (result != static_cast<off_t>(-1))
    [all...]
  /development/ndk/platforms/android-9/include/android/
asset_manager.h 94 * Returns the new position on success, or (off_t) -1 on error.
96 off_t AAsset_seek(AAsset* asset, off_t offset, int whence);
113 off_t AAsset_getLength(AAsset* asset);
118 off_t AAsset_getRemainingLength(AAsset* asset);
126 int AAsset_openFileDescriptor(AAsset* asset, off_t* outStart, off_t* outLength);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
environments.h 30 _POSIX_V6_ILP32_OFF32 32bit int, long, pointers, and off_t type
31 _POSIX_V6_ILP32_OFFBIG 32bit int, long, and pointers and larger off_t type
33 _POSIX_V6_LP64_OFF32 64bit long and pointers and 32bit off_t type
34 _POSIX_V6_LPBIG_OFFBIG 64bit long and pointers and large off_t type
56 /* By default we have 64-bit wide `long int', pointers and `off_t'. */
62 /* By default we have 32-bit wide `int', `long int', pointers and `off_t'
70 side `off_t'. Therefore we don't define _XBS5_ILP32_OFFBIG. */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
environments.h 30 _POSIX_V6_ILP32_OFF32 32bit int, long, pointers, and off_t type
31 _POSIX_V6_ILP32_OFFBIG 32bit int, long, and pointers and larger off_t type
33 _POSIX_V6_LP64_OFF32 64bit long and pointers and 32bit off_t type
34 _POSIX_V6_LPBIG_OFFBIG 64bit long and pointers and large off_t type
56 /* By default we have 64-bit wide `long int', pointers and `off_t'. */
62 /* By default we have 32-bit wide `int', `long int', pointers and `off_t'
70 side `off_t'. Therefore we don't define _XBS5_ILP32_OFFBIG. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
environments.h 30 _POSIX_V6_ILP32_OFF32 32bit int, long, pointers, and off_t type
31 _POSIX_V6_ILP32_OFFBIG 32bit int, long, and pointers and larger off_t type
33 _POSIX_V6_LP64_OFF32 64bit long and pointers and 32bit off_t type
34 _POSIX_V6_LPBIG_OFFBIG 64bit long and pointers and large off_t type
56 /* By default we have 64-bit wide `long int', pointers and `off_t'. */
62 /* By default we have 32-bit wide `int', `long int', pointers and `off_t'
70 side `off_t'. Therefore we don't define _XBS5_ILP32_OFFBIG. */
  /prebuilts/ndk/5/platforms/android-9/arch-arm/usr/include/android/
asset_manager.h 92 * Returns the new position on success, or (off_t) -1 on error.
94 off_t AAsset_seek(AAsset* asset, off_t offset, int whence);
111 off_t AAsset_getLength(AAsset* asset);
116 off_t AAsset_getRemainingLength(AAsset* asset);
124 int AAsset_openFileDescriptor(AAsset* asset, off_t* outStart, off_t* outLength);
  /prebuilts/ndk/6/platforms/android-9/arch-arm/usr/include/android/
asset_manager.h 92 * Returns the new position on success, or (off_t) -1 on error.
94 off_t AAsset_seek(AAsset* asset, off_t offset, int whence);
111 off_t AAsset_getLength(AAsset* asset);
116 off_t AAsset_getRemainingLength(AAsset* asset);
124 int AAsset_openFileDescriptor(AAsset* asset, off_t* outStart, off_t* outLength);
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/android/
asset_manager.h 92 * Returns the new position on success, or (off_t) -1 on error.
94 off_t AAsset_seek(AAsset* asset, off_t offset, int whence);
111 off_t AAsset_getLength(AAsset* asset);
116 off_t AAsset_getRemainingLength(AAsset* asset);
124 int AAsset_openFileDescriptor(AAsset* asset, off_t* outStart, off_t* outLength);
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/android/
asset_manager.h 92 * Returns the new position on success, or (off_t) -1 on error.
94 off_t AAsset_seek(AAsset* asset, off_t offset, int whence);
111 off_t AAsset_getLength(AAsset* asset);
116 off_t AAsset_getRemainingLength(AAsset* asset);
124 int AAsset_openFileDescriptor(AAsset* asset, off_t* outStart, off_t* outLength);
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/android/
asset_manager.h 92 * Returns the new position on success, or (off_t) -1 on error.
94 off_t AAsset_seek(AAsset* asset, off_t offset, int whence);
111 off_t AAsset_getLength(AAsset* asset);
116 off_t AAsset_getRemainingLength(AAsset* asset);
124 int AAsset_openFileDescriptor(AAsset* asset, off_t* outStart, off_t* outLength);

Completed in 902 milliseconds

1 2 3 4 5 6 7 8 91011>>