| /xsrc/external/mit/fontconfig/dist/fc-lang/ |
| lij.orth | 13 # representations about the suitability of this software for any purpose. It 31 include it.orth
|
| /xsrc/external/mit/xorg-server/dist/Xext/ |
| hashtable.c | 75 BucketPtr it, tmp; local 78 xorg_list_for_each_entry_safe(it, tmp, &ht->buckets[c], l) { 79 xorg_list_del(&it->l); 80 free(it->key); 81 free(it->data); 82 free(it); 105 BucketPtr it, tmp; local 106 xorg_list_for_each_entry_safe(it, tmp, &ht->buckets[c], l) { 108 &newBuckets[ht->hash(ht->cdata, it->key, newBucketBits)]; 109 xorg_list_del(&it->l) 174 BucketPtr it; local 193 BucketPtr it; local 210 BucketPtr it; local 283 BucketPtr it; local [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gtest/src/ |
| gtest-typed-test.cc | 79 for (RegisteredTestIter it = registered_tests_.begin(); 80 it != registered_tests_.end(); 81 ++it) { 82 if (name == it->first) { 96 for (RegisteredTestIter it = registered_tests_.begin(); 97 it != registered_tests_.end(); 98 ++it) { 99 if (tests.count(it->first) == 0) { 100 errors << "You forgot to list test " << it->first << ".\n";
|
| /xsrc/external/mit/MesaLib.old/dist/src/gtest/src/ |
| gtest-typed-test.cc | 79 for (RegisteredTestIter it = registered_tests_.begin(); 80 it != registered_tests_.end(); 81 ++it) { 82 if (name == it->first) { 96 for (RegisteredTestIter it = registered_tests_.begin(); 97 it != registered_tests_.end(); 98 ++it) { 99 if (tests.count(it->first) == 0) { 100 errors << "You forgot to list test " << it->first << ".\n";
|
| /xsrc/external/mit/MesaLib/dist/src/amd/compiler/ |
| aco_util.h | 238 * corresponding bit is set. It doesn't use std::vector<bool> since we then 274 Iterator it; 275 it.set = this; 276 it.bit = id % 64u; 277 it.word = id / 64u; 278 return it; 286 Iterator it; local 287 it.set = this; 288 it.bit = id % 64u; 289 it.word = id / 64u 312 Iterator it; local 326 Iterator it; local [all...] |
| aco_reindex_ssa.cpp | 69 auto it = block.instructions.begin(); local 71 while (is_phi(*it)) { 72 reindex_defs(ctx, *it++); 75 while (it != block.instructions.end()) { 76 reindex_defs(ctx, *it); 77 reindex_ops(ctx, *it); 78 ++it; 83 auto it = block.instructions.begin(); local 84 while (is_phi(*it)) { 85 reindex_ops(ctx, *it++) [all...] |
| aco_reduce_assign.cpp | 79 std::vector<aco_ptr<Instruction>>::iterator it = block.instructions.begin(); local 80 while ((*it)->opcode == aco_opcode::p_linear_phi || (*it)->opcode == aco_opcode::p_phi) 81 ++it; 82 block.instructions.insert(it, std::move(end)); 92 std::vector<aco_ptr<Instruction>>::iterator it; local 93 for (it = block.instructions.begin(); it != block.instructions.end(); ++it) { 94 Instruction* instr = (*it).get() [all...] |
| aco_lower_to_cssa.cpp | 86 /* if the definition is not temp, it is the exec mask. 219 for (auto it = block.instructions.crbegin(); it != block.instructions.crend(); ++it) { 220 /* if the parent was not encountered yet, it can only be used by a phi */ 221 if (is_phi(it->get())) 224 for (const Definition& def : (*it)->definitions) { 232 for (const Operand& op : (*it)->operands) { 281 * drops that temporary as it is being coalesced */ 389 auto&& it = ltg.begin() local 476 auto&& it = ltg.find(pair.second.read_idx); local 489 auto it = local 514 auto&& it = renames.find(op.tempId()); local [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/core/ |
| context.cpp | 81 auto it = std::prev(svm_ptrs.upper_bound(ptr)); 82 if (it == svm_ptrs.end()) 85 uintptr_t base = reinterpret_cast<uintptr_t>((*it).first); 86 uintptr_t end = (*it).second + base; 89 return *it;
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/a2xx/ |
| ir2_private.h | 61 bool alloc : 1; /* is it currently allocated */ 234 /* ir2_assemble uses it .. */ 237 #define ir2_foreach_instr(it, ctx) \ 238 for (struct ir2_instr *it = (ctx)->instr; ({ \ 239 while (it != &(ctx)->instr[(ctx)->instr_count] && \ 240 it->type == IR2_NONE) \ 241 it++; \ 242 it != &(ctx)->instr[(ctx)->instr_count]; \ 244 it++) 246 #define ir2_foreach_live_reg(it, ctx) [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/codegen/ |
| nv50_ir_from_common.cpp | 36 std::map<unsigned, Subroutine>::iterator it = sub.map.find(ip); local 38 if (it == sub.map.end()) 39 it = sub.map.insert(std::make_pair( 42 return &it->second; 49 std::map<unsigned, Subroutine>::iterator it = sub.map.find(ip); local 51 if (it == sub.map.end()) 52 it = sub.map.insert(std::make_pair(ip, Subroutine(f))).first; 54 return &it->second;
|
| nv50_ir_bb.cpp | 64 for (ArrayList::Iterator it = allInsns.iterator(); !it.end(); it.next()) 65 delete_Instruction(prog, reinterpret_cast<Instruction *>(it.get())); 67 for (ArrayList::Iterator it = allLValues.iterator(); !it.end(); it.next()) 68 delete_Value(prog, reinterpret_cast<LValue *>(it.get())); 106 for (Graph::EdgeIterator it = cfg.outgoing(); !it.end(); it.next()) [all...] |
| nv50_ir_ssa.cpp | 84 for (IteratorRef it = cfg->iteratorDFS(true); !it->end(); it->next(), ++i) { 85 vert[i] = reinterpret_cast<Node *>(it->get()); 156 for (DLList::Iterator it = bucket[p].iterator(); !it.end(); it.erase()) { 157 v = reinterpret_cast<Node *>(it.get())->tag; 254 for (std::deque<ValueRef>::iterator it = f->outs.begin(); 255 it != f->outs.end(); ++it) [all...] |
| /xsrc/external/mit/MesaLib/dist/src/tool/pps/ |
| pps_algorithm.h | 15 #define CONTAINS_IT(c, it) (it != std::end(c))
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/a2xx/ |
| ir2_private.h | 61 bool alloc : 1; /* is it currently allocated */ 237 /* ir2_assemble uses it .. */ 240 #define ir2_foreach_instr(it, ctx) \ 241 for (struct ir2_instr *it = (ctx)->instr; ({ \ 242 while (it != &(ctx)->instr[(ctx)->instr_count] && it->type == IR2_NONE) it++; \ 243 it != &(ctx)->instr[(ctx)->instr_count]; }); it++) 245 #define ir2_foreach_live_reg(it, ctx) [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/codegen/ |
| nv50_ir_from_common.cpp | 34 std::map<unsigned, Subroutine>::iterator it = sub.map.find(ip); local 36 if (it == sub.map.end()) 37 it = sub.map.insert(std::make_pair( 40 return &it->second; 47 std::map<unsigned, Subroutine>::iterator it = sub.map.find(ip); local 49 if (it == sub.map.end()) 50 it = sub.map.insert(std::make_pair(ip, Subroutine(f))).first; 52 return &it->second;
|
| nv50_ir_bb.cpp | 64 for (ArrayList::Iterator it = allInsns.iterator(); !it.end(); it.next()) 65 delete_Instruction(prog, reinterpret_cast<Instruction *>(it.get())); 67 for (ArrayList::Iterator it = allLValues.iterator(); !it.end(); it.next()) 68 delete_Value(prog, reinterpret_cast<LValue *>(it.get())); 106 for (Graph::EdgeIterator it = cfg.outgoing(); !it.end(); it.next()) [all...] |
| nv50_ir_ssa.cpp | 84 for (IteratorRef it = cfg->iteratorDFS(true); !it->end(); it->next(), ++i) { 85 vert[i] = reinterpret_cast<Node *>(it->get()); 156 for (DLList::Iterator it = bucket[p].iterator(); !it.end(); it.erase()) { 157 v = reinterpret_cast<Node *>(it.get())->tag; 254 for (std::deque<ValueRef>::iterator it = f->outs.begin(); 255 it != f->outs.end(); ++it) [all...] |
| /xsrc/external/mit/libXext/dist/src/ |
| Xge.c | 248 XGEExtList it; local 261 it = ((XGEData*)info->data)->extensions; 262 while(it) 264 if (it->extension == extension) 266 return (it->hooks->wire_to_event(dpy, re, event)); 268 it = it->next; 281 XGEExtList it; local 288 it = ((XGEData*)info->data)->extensions; 289 while(it) [all...] |
| /xsrc/external/mit/MesaLib/dist/.gitlab/issue_templates/ |
| Bug Report.md | 33 seeing instead. How frequent is the issue? Is it a one time occurrence? Does it appear multiple times but randomly? Can you easily reproduce it? 35 "It doesn't work" usually is not a helpful description of an issue. 41 Did it used to work? It can greatly help to know when the issue started.
|
| Bug Report - AMD Radeon Vulkan.md | 16 seeing instead. How frequent is the issue? Is it a one time occurrence? Does it appear multiple times but randomly? Can you easily reproduce it? 18 "It doesn't work" usually is not a helpful description of an issue. 23 For rendering errors, attach screenshots of the problem and (if possible) of how it should look. For freezes, it may be useful to provide a screenshot of the affected game scene. Prefer screenshots over videos. 60 Did it used to work in a previous Mesa version? It can greatly help to know when the issue started.
|
| /xsrc/external/mit/font-bh-ttf/dist/ |
| 42-luxi-mono.conf | 4 though it detects multiple character widths -->
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/xa/ |
| README | 31 xorg driver writers. Initially it's mostly based on Zack Rusin's 43 with Gallium, but it's really beneficial to be able to compile xorg drivers 70 It is allowed to add function interfaces while only bumping minor. Any
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/xa/ |
| README | 31 xorg driver writers. Initially it's mostly based on Zack Rusin's 43 with Gallium, but it's really beneficial to be able to compile xorg drivers 70 It is allowed to add function interfaces while only bumping minor. Any
|
| /xsrc/external/mit/libepoxy/dist/registry/ |
| README.md | 10 4. check the result for consistency and commit it 12 into it with the appropriate commit message
|