Searched refs:where (Results 1 - 13 of 13) sorted by relevance
/system/core/libutils/ |
H A D | VectorImpl.cpp | 130 void* where = _grow(index, length); local 131 if (where) { 132 _do_copy(where, array, length); 134 return where ? index : (ssize_t)NO_MEMORY; 151 void* where = _grow(index, numItems); local 152 if (where) { 154 _do_splat(where, item, numItems); 156 _do_construct(where, numItems); 159 return where ? index : (ssize_t)NO_MEMORY; 379 void* VectorImpl::_grow(size_t where, size_ [all...] |
/system/core/include/utils/ |
H A D | VectorImpl.h | 76 ssize_t insertAt(size_t where, size_t numItems = 1); 77 ssize_t insertAt(const void* item, size_t where, size_t numItems = 1); 110 void* _grow(size_t where, size_t amount); 111 void _shrink(size_t where, size_t amount); 143 //! finds where this item should be inserted 172 ssize_t insertAt(size_t where, size_t numItems = 1); 173 ssize_t insertAt(const void* item, size_t where, size_t numItems = 1);
|
H A D | TypeHelpers.h | 173 void splat_type(TYPE* where, const TYPE* what, size_t n) { argument 177 new(where) TYPE(*what); 178 where++; 183 *where++ = *what;
|
/system/core/libutils/include/utils/ |
H A D | VectorImpl.h | 76 ssize_t insertAt(size_t where, size_t numItems = 1); 77 ssize_t insertAt(const void* item, size_t where, size_t numItems = 1); 110 void* _grow(size_t where, size_t amount); 111 void _shrink(size_t where, size_t amount); 143 //! finds where this item should be inserted 172 ssize_t insertAt(size_t where, size_t numItems = 1); 173 ssize_t insertAt(const void* item, size_t where, size_t numItems = 1);
|
H A D | TypeHelpers.h | 173 void splat_type(TYPE* where, const TYPE* what, size_t n) { argument 177 new(where) TYPE(*what); 178 where++; 183 *where++ = *what;
|
/system/core/libpixelflinger/ |
H A D | raster.cpp | 146 GGLint gglBitBlit(GGLContext* con, int tmu, GGLint crop[4], GGLint where[4]) argument 150 GGLint x = where[0]; 151 GGLint y = where[1]; 152 GGLint w = where[2]; 153 GGLint h = where[3];
|
/system/extras/bootctl/ |
H A D | bootctl.cpp | 30 static void usage(FILE* where, int /* argc */, char* argv[]) argument 32 fprintf(where,
|
/system/core/adb/ |
H A D | sysdeps.h | 197 extern int adb_lseek(int fd, int pos, int where); 554 static __inline__ int adb_lseek(int fd, int pos, int where) 556 return lseek(fd, pos, where);
|
H A D | commandline.cpp | 2223 const char* where = DATA_DEST; local 2227 where = SD_DEST; 2249 where, android::base::Basename(argv[last_apk]).c_str());
|
H A D | sysdeps_win32.cpp | 140 static int _win32_fh_next; // where to start search for free FHRec 452 int adb_lseek(int fd, int pos, int where) argument 460 return f->clazz->_fh_lseek(f, pos, where); 1451 // If we're in an AltGr situation where the AltGr key is down (depending on 1453 // produces a control_key_state where Right-Alt and Left-Ctrl are down) or
|
/system/bt/doc/ |
H A D | power_management.md | 31 we might possibly get into a bad state where we never hear back from the
|
/system/core/libpixelflinger/include/pixelflinger/ |
H A D | pixelflinger.h | 322 GGLint where[4]);
|
/system/tools/hidl/ |
H A D | hidl-gen_y.yy | 1033 const yy::parser::location_type &where, 1035 std::cerr << "ERROR: " << errstr << " at " << where << "\n";
|
Completed in 153 milliseconds