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

/system/core/include/utils/
H A DTypeHelpers.h163 void splat_type(TYPE* where, const TYPE* what, size_t n) { argument
166 new(where) TYPE(*what);
167 where++;
171 *where++ = *what;
/system/core/libpixelflinger/codeflinger/tinyutils/
H A DTypeHelpers.h161 void splat_type(TYPE* where, const TYPE* what, size_t n) { argument
164 new(where) TYPE(*what);
165 where++;
169 *where++ = *what;
H A DVectorImpl.cpp116 void* where = _grow(index, vector.size()); local
117 if (where) {
118 _do_copy(where, vector.arrayImpl(), vector.size());
120 return where ? index : (ssize_t)NO_MEMORY;
137 void* where = _grow(index, numItems); local
138 if (where) {
140 _do_splat(where, item, numItems);
142 _do_construct(where, numItems);
145 return where ? index : (ssize_t)NO_MEMORY;
275 void* VectorImpl::_grow(size_t where, size_
325 _shrink(size_t where, size_t amount) argument
[all...]
/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/libutils/
H A DVectorImpl.cpp123 void* where = _grow(index, length); local
124 if (where) {
125 _do_copy(where, array, length);
127 return where ? index : (ssize_t)NO_MEMORY;
144 void* where = _grow(index, numItems); local
145 if (where) {
147 _do_splat(where, item, numItems);
149 _do_construct(where, numItems);
152 return where ? index : (ssize_t)NO_MEMORY;
367 void* VectorImpl::_grow(size_t where, size_
[all...]
/system/core/adb/
H A Dsysdeps.h117 extern int adb_lseek(int fd, int pos, int where);
388 static __inline__ int adb_lseek(int fd, int pos, int where) argument
390 return lseek(fd, pos, where);
H A Dcommandline.c1661 const char* where = DATA_DEST; local
1679 where = SD_DEST;
1710 snprintf(apk_dest, sizeof apk_dest, where, get_basename(apk_file));
1712 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,

Completed in 327 milliseconds