HomeSort by: relevance | last modified time | path
    Searched defs:it (Results 1 - 25 of 71) sorted by relevancy

1 2 3

  /xsrc/external/mit/freetype/dist/docs/reference/assets/javascripts/lunr/
lunr.it.js 17 !function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");var z,P,r;e.it=function(){this.pipeline.reset(),this.pipeline.add(e.it.trimmer,e.it.stopWordFilter,e.it.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.it.stemmer))},e.it.wordCharacters="A-Za-zªºÀ-ÖØ-öø-ʸˠ-ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-ᵷᵹ-ᶾḀ-ỿⁱⁿₐ-ₜKÅℲⅎⅠ-ↈⱠ-ⱿꜢ-ꞇꞋ-ꞭꞰ-ꞷꟷ-ꟿꬰ-ꭚꭜ-ꭤff-stA-Za-z",e.it.trimmer=e.trimmerSupport.generateTrimmer(e.it.wordCharacters),e.Pipeline.registerFunction(e.it.trimmer,"trimmer-it"),e.it.stemmer=(z=e.stemmerSupport.Among,P=e.stemmerSupport.SnowballProgram,r=new function(){var o (…)
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/core/
format.cpp 144 auto it = formats.find(format); local
146 if (it == formats.end())
149 return it->second;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/core/core/
format.cpp 137 auto it = formats.find(format); local
139 if (it == formats.end())
142 return it->second;
  /xsrc/external/mit/MesaLib/dist/src/amd/compiler/
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_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_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_lower_phis.cpp 127 auto it = std::find_if(block->instructions.crbegin(), block->instructions.crend(), IsLogicalEnd); local
129 if (it == block->instructions.crend()) {
133 block->instructions.insert(std::prev(it.base()), std::move(instr));
149 auto it = std::find_if(block->instructions.rbegin(), block->instructions.rend(), IsLogicalEnd); local
150 assert(it != block->instructions.rend());
151 bld.reset(&block->instructions, std::prev(it.base()));
aco_ssa_elimination.cpp 99 std::vector<aco_ptr<Instruction>>::iterator it = std::next(block.instructions.begin(), idx); local
111 block.instructions.insert(it, std::move(pc));
121 std::vector<aco_ptr<Instruction>>::iterator it = block.instructions.end(); local
122 --it;
123 assert((*it)->isBranch());
135 block.instructions.insert(it, std::move(pc));
351 /* If the current instruction needs exec, mark it as used. */
aco_live_var_analysis.cpp 225 auto it = lives.live_out[pred_idx].insert(t); local
226 if (it.second)
329 /* it's not possible to allocate more than 128 SGPRs */
aco_opt_value_numbering.cpp 62 /* Accesses it though a byte array, so doesn't violate the strict aliasing rule */
286 * Together with the check for dominator relations, it is safe to assume
288 * Discards increment the exec_id, so that it won't return to the previous value.
366 auto it = ctx.renames.find(op.tempId()); local
367 if (it != ctx.renames.end())
368 op.setTemp(it->second);
436 auto it = renames.find(op.tempId()); local
437 if (it != renames.end())
438 op.setTemp(it->second);
  /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;
  /xsrc/external/mit/MesaLib/dist/src/tool/pps/
pps_driver.cc 72 auto it = supported_drivers.find(drm_device.name); local
73 if (it == std::end(supported_drivers)) {
77 Driver *driver = it->second.get();
  /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;
  /xsrc/external/mit/MesaLib/dist/src/compiler/nir/
nir_lower_variable_initializers.c 169 nir_variable *it = nir_local_variable_create(b.impl, glsl_uint_type(), local
173 nir_store_var(&b, it, first_offset, 0x1);
177 nir_ssa_def *offset = nir_load_var(&b, it);
190 nir_store_var(&b, it, new_offset, 0x1);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/
nouveau_fence.c 86 struct nouveau_fence *it; local
96 for (it = screen->fence.head; it && it->next != fence; it = it->next);
97 it->next = fence->next;
99 screen->fence.tail = it;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/
nouveau_fence.c 86 struct nouveau_fence *it; local
96 for (it = screen->fence.head; it && it->next != fence; it = it->next);
97 it->next = fence->next;
99 screen->fence.tail = it;
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/nv50/
nv50_context.c 411 // use it as a fallback.
416 // zero entry if it's not otherwise set.
439 struct nouveau_list *it; local
441 for (it = list->next; it != list; it = it->next) {
442 struct nouveau_bufref *ref = (struct nouveau_bufref *)it;
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/nvc0/
nvc0_context.c 142 * it. Especially when moving between 3d and compute pipelines, but even
493 * CBs are aliased between 3D and COMPUTE, but make sure it will be bound if
539 // use it as a fallback on Fermi for TXF, and on Kepler+ generations for
544 // not to do it.
579 struct nouveau_list *it; local
582 for (it = list->next; it != list; it = it->next) {
583 struct nouveau_bufref *ref = (struct nouveau_bufref *)it;
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/nv50/
nv50_context.c 383 // use it as a fallback.
388 // zero entry if it's not otherwise set.
411 struct nouveau_list *it; local
413 for (it = list->next; it != list; it = it->next) {
414 struct nouveau_bufref *ref = (struct nouveau_bufref *)it;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/nvc0/
nvc0_context.c 95 * it. Especially when moving between 3d and compute pipelines, but even
437 * CBs are aliased between 3D and COMPUTE, but make sure it will be bound if
483 // use it as a fallback on Fermi for TXF, and on Kepler+ generations for
488 // not to do it.
523 struct nouveau_list *it; local
526 for (it = list->next; it != list; it = it->next) {
527 struct nouveau_bufref *ref = (struct nouveau_bufref *)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/src/gallium/drivers/r600/sb/
sb_valtable.cpp 240 uselist::iterator it = local
243 if (it != uses.end())
245 // We only ever had a pointer, so don't delete it here
246 uses.erase(it);
301 /* if the register is not relative, it can't create an relative access conflict */
307 * signal interference if there is an address register load and it will fail
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/swr/
swr_screen.cpp 130 * Although possible, it is unnatural to render into compressed or YUV
601 auto it = mesa2swr.find(format); local
602 if (it == mesa2swr.end())
605 return it->second;
688 * except that pitch never plays into it. All the levels are logically
736 // underneath it. However in some degenerate situations, the width of
846 * and attaches it to main multisample resource. */
883 /* Attach it to the multisample resource */
923 * it to multisample resource. */
934 /* Easiest to just call swr_texture_layout, as it sets u
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r600/sb/
sb_valtable.cpp 240 uselist::iterator it = local
243 if (it != uses.end())
245 // We only ever had a pointer, so don't delete it here
246 uses.erase(it);
301 /* if the register is not relative, it can't create an relative access conflict */
307 * signal interference if there is an address register load and it will fail
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/
swr_screen.cpp 129 * Although possible, it is unnatural to render into compressed or YUV
649 auto it = mesa2swr.find(format); local
650 if (it == mesa2swr.end())
653 return it->second;
736 * except that pitch never plays into it. All the levels are logically
784 // underneath it. However in some degenerate situations, the width of
894 * and attaches it to main multisample resource. */
931 /* Attach it to the multisample resource */
971 * it to multisample resource. */
982 /* Easiest to just call swr_texture_layout, as it sets u
    [all...]

Completed in 21 milliseconds

1 2 3