/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/ |
draw_pipe_validate.c | 15 * next paragraph) shall be included in all copies or substantial portions 161 struct draw_stage *next = draw->pipeline.rasterize; local 167 /* Set the validate's next stage to the rasterize stage, so that it 170 stage->next = next; 196 draw->pipeline.aaline->next = next; 197 next = draw->pipeline.aaline; 202 draw->pipeline.aapoint->next = next; [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_double_list.h | 23 * next paragraph) shall be included in all copies or substantial portions 48 struct list_head *next; member in struct:list_head 54 item->next = item; 60 item->next = list->next; 61 list->next->prev = item; 62 list->next = item; 67 item->next = list; 69 list->prev->next = item; 76 to->next = from->next [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
lp_state_setup.h | 13 struct lp_setup_variant_list_item *next, *prev; member in struct:lp_setup_variant_list_item
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/ |
nv50_ir_target.cpp | 175 !fi.end(); fi.next()) { 208 for (IteratorRef it = func->cfg.iteratorCFG(); !it->end(); it->next()) 215 Instruction *i, *next; local 246 for (i = bb->getEntry(); i; i = next) { 247 next = i->next; 250 if (next && i->encSize < 8) 253 if ((nShort & 1) && next && getMinEncodingSize(next) == 4) { 254 if (i->isCommutationLegal(i->next)) { [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/ |
r300_fs.h | 13 * The above copyright notice and this permission notice (including the next 56 struct r300_fragment_shader_code* next; member in struct:r300_fragment_shader_code
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/dxgi/src/ |
dxgi_loader.cpp | 75 const char *cur, *next; local 80 next = strchr(cur, ':'); 81 len = (next) ? next - cur : strlen(cur); 86 cur = (next) ? next + 1 : NULL;
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_fs_cfg.cpp | 11 * The above copyright notice and this permission notice (including the next 81 fs_bblock *next; local 114 next = new_block(); 115 next->start = (fs_inst *)inst->next; 116 cur_if->add_successor(mem_ctx, next); 118 set_next_block(next); 124 next = new_block(); 125 next->start = (fs_inst *)inst->next; [all...] |
brw_vec4_reg_allocate.cpp | 11 * The above copyright notice and this permission notice (including the next 50 int next; local 72 next = hw_reg_mapping[0] + this->virtual_grf_sizes[0]; 75 hw_reg_mapping[i] = next; 76 next += this->virtual_grf_sizes[i]; 79 prog_data->total_grf = next;
|
/external/chromium_org/third_party/mesa/src/src/mesa/program/ |
prog_cache.c | 15 * next paragraph) shall be included in all copies or substantial portions 42 struct cache_item *next; member in struct:cache_item 85 struct cache_item *c, *next; local 95 for (c = cache->items[i]; c; c = next) { 96 next = c->next; 97 c->next = items[c->hash % size]; 111 struct cache_item *c, *next; local 117 for (c = cache->items[i]; c; c = next) { 118 next = c->next [all...] |
/external/chromium_org/third_party/npapi/npspy/extern/nspr/ |
prlog.h | 156 struct PRLogModuleInfo *next; member in struct:PRLogModuleInfo
|
/external/chromium_org/third_party/openssl/openssl/crypto/pqueue/ |
pqueue.c | 79 item->next = NULL; 113 pitem *curr, *next; local 121 for(curr = NULL, next = pq->items; 122 next != NULL; 123 curr = next, next = next->next) 127 int cmp = memcmp(next->priority, item->priority,8); 128 if (cmp > 0) /* next > item * 170 pitem *next; local [all...] |
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/ |
BoundedByteString.java | 147 public Byte next() { method in class:BoundedByteString.BoundedByteIterator
|
/external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/ |
UnmodifiableLazyStringListTest.java | 100 iter.next(); 120 iter.next();
|
/external/chromium_org/third_party/skia/include/core/ |
SkTDStack.h | 27 Rec* next = rec->fNext; local 29 rec = next;
|
SkTDict.h | 121 const char* next(T* value) function in class:SkTDict::Iter
|
/external/chromium_org/third_party/skia/src/core/ |
SkChunkAlloc.cpp | 32 Block* next = block->fNext; local 34 block = next;
|
SkGlyphCache_Globals.h | 46 SkGlyphCache* next = cache->fNext; local 48 cache = next;
|
/external/chromium_org/third_party/skia/src/effects/ |
SkLayerDrawLooper.cpp | 34 Rec* next = rec->fNext; local 36 rec = next; 172 bool SkLayerDrawLooper::next(SkCanvas* canvas, SkPaint* paint) { function in class:SkLayerDrawLooper
|
/external/chromium_org/third_party/skia/src/gpu/ |
GrAllocPool.cpp | 20 static Block* Create(size_t size, Block* next) { 24 block->fNext = next; 71 Block* next = block->fNext; local 73 block = next; 96 Block* next = fBlock->fNext; local 98 fBlock = next;
|
/external/chromium_org/third_party/skia/src/pathops/ |
SkAddIntersections.cpp | 177 bool AddIntersectTs(SkOpContour* test, SkOpContour* next) { 178 if (test != next) { 179 if (AlmostLessUlps(test->bounds().fBottom, next->bounds().fTop)) { 183 if (!SkPathOpsBounds::Intersects(test->bounds(), next->bounds())) { 189 bool foundCommonContour = test == next; 192 wn.init(next); 193 if (test == next && !wn.startAfter(wt)) { 358 test->addCross(next); 359 next->addCross(test); 385 const SkDPoint& next = ts.pt(pt + 1) local [all...] |
SkPathOpsSimplify.cpp | 47 SkOpSegment* next = current->findNextWinding(&chaseArray, &nextStart, &nextEnd, local 49 if (!next) { 64 current = next; 112 SkOpSegment* next = current->findNextXor(&nextStart, &nextEnd, &unsortable); local 113 if (!next) { 128 current = next; 180 SkOpContour* next; local 182 next = *nextPtr++; 183 } while (AddIntersectTs(current, next) && nextPtr != listEnd);
|
/external/chromium_org/third_party/skia/src/utils/ |
SkOSFile.cpp | 139 bool SkOSFile::Iter::next(SkString* name, bool getDir) function in class:SkOSFile::Iter 211 bool SkOSFile::Iter::next(SkString* name, bool getDir) function in class:SkOSFile::Iter
|
/external/chromium_org/third_party/skia/src/views/win/ |
skia_win.cpp | 140 TCHAR exename[1024], *next; local 145 TCHAR* arg = _tcstok_s(lpCmdLine, _T(" "), &next); 148 arg = _tcstok_s(NULL, _T(" "), &next);
|
/external/chromium_org/third_party/sqlite/src/ext/fts1/ |
ft_hash.h | 53 HashElem *next, *prev; /* Next and previous elements in the table */ member in struct:HashElem 101 #define HashNext(E) ((E)->next)
|
/external/chromium_org/third_party/sqlite/src/ext/fts2/ |
fts2_hash.h | 51 fts2HashElem *next, *prev; /* Next and previous elements in the table */ member in struct:fts2HashElem 100 #define fts2HashNext(E) ((E)->next)
|