Searched defs:where (Results 1 - 6 of 6) sorted by relevance
/system/core/libpixelflinger/ |
H A D | raster.cpp | 146 GGLint gglBitBlti(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/libpixelflinger/tinyutils/ |
H A D | TypeHelpers.h | 151 void splat_type(TYPE* where, const TYPE* what, size_t n) { argument 154 new(where) TYPE(*what); 155 where++; 159 *where++ = *what;
|
H A D | VectorImpl.cpp | 114 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...] |
/system/core/adb/ |
H A D | commandline.c | 1232 const char* where = DATA_DEST; local 1240 where = SD_DEST; 1246 snprintf(to, sizeof to, where, p); 1248 snprintf(to, sizeof to, where, filename);
|
H A D | sysdeps.h | 115 extern int adb_lseek(int fd, int pos, int where); 361 static __inline__ int adb_lseek(int fd, int pos, int where) argument 363 return lseek(fd, pos, where);
|
H A D | sysdeps_win32.c | 426 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 1112 milliseconds