Searched refs:where (Results 1 - 8 of 8) sorted by relevance

/system/core/libpixelflinger/tinyutils/
H A DVectorImpl.cpp114 void* where = _grow(index, vector.size()); local
115 if (where) {
116 _do_copy(where, vector.arrayImpl(), vector.size());
118 return where ? index : (ssize_t)NO_MEMORY;
135 void* where = _grow(index, numItems); local
136 if (where) {
138 _do_splat(where, item, numItems);
140 _do_construct(where, numItems);
143 return where ? index : (ssize_t)NO_MEMORY;
273 void* VectorImpl::_grow(size_t where, size_
[all...]
H A DVectorImpl.h65 ssize_t insertAt(size_t where, size_t numItems = 1);
66 ssize_t insertAt(const void* item, size_t where, size_t numItems = 1);
104 void* _grow(size_t where, size_t amount);
105 void _shrink(size_t where, size_t amount);
137 //! finds where this item should be inserted
174 ssize_t insertAt(size_t where, size_t numItems = 1);
175 ssize_t insertAt(const void* item, size_t where, size_t numItems = 1);
H A DTypeHelpers.h151 void splat_type(TYPE* where, const TYPE* what, size_t n) { argument
154 new(where) TYPE(*what);
155 where++;
159 *where++ = *what;
/system/core/libpixelflinger/
H A Draster.cpp146 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/core/adb/
H A Dsysdeps.h117 extern int adb_lseek(int fd, int pos, int where);
373 static __inline__ int adb_lseek(int fd, int pos, int where) argument
375 return lseek(fd, pos, where);
H A Dcommandline.c1541 const char* where = DATA_DEST; local
1559 where = SD_DEST;
1590 snprintf(apk_dest, sizeof apk_dest, where, get_basename(apk_file));
1592 snprintf(verification_dest, sizeof(verification_dest), where, get_basename(verification_file));
H A Dsysdeps_win32.c426 int adb_lseek(int fd, int pos, int where) argument
434 return f->clazz->_fh_lseek(f, pos, where);
815 * a_start is the pointer where we start reading data
816 * a_end is the pointer where we start writing data, unless it is BUFFER_SIZE,
/system/core/include/pixelflinger/
H A Dpixelflinger.h322 GGLint where[4]);

Completed in 32 milliseconds