Searched refs:ir (Results 276 - 300 of 388) sorted by relevance

<<111213141516

/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_reg_allocate.cpp287 unspill_inst->ir = inst->ir;
431 spill_inst->ir = inst->ir;
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dir_reader.cpp304 ir_instruction *ir = read_instruction(sub, loop_ctx); local
305 if (ir != NULL) {
311 if (state->current_function == NULL && ir->as_variable() != NULL)
312 instructions->push_head(ir);
314 instructions->push_tail(ir);
748 ir_swizzle *ir = ir_swizzle::create(rvalue, swiz->value(),
750 if (ir == NULL)
753 return ir;
H A Dlink_uniforms.cpp25 #include "ir.h"
458 foreach_list(node, shader->ir) {
567 foreach_list(node, prog->_LinkedShaders[i]->ir) {
612 foreach_list(node, prog->_LinkedShaders[i]->ir) {
H A Dlink_uniform_initializers.cpp25 #include "ir.h"
166 foreach_list(node, shader->ir) {
H A Dlower_mat_op_to_vec.cpp34 #include "ir.h"
67 mat_op_to_vec_predicate(ir_instruction *ir) argument
69 ir_expression *expr = ir->as_expression();
/external/chromium_org/third_party/skia/src/core/
H A DSkScalerContext.cpp170 SkIRect ir; local
171 devPath.getBounds().roundOut(&ir);
173 if (ir.isEmpty() || !ir.is16Bit()) {
176 glyph->fLeft = ir.fLeft;
177 glyph->fTop = ir.fTop;
178 glyph->fWidth = SkToU16(ir.width());
179 glyph->fHeight = SkToU16(ir.height());
H A DSkCanvas.cpp849 SkIRect ir; local
854 r.roundOut(&ir);
856 if (!ir.intersect(clipBounds)) {
863 ir = clipBounds;
867 fClipStack.clipDevRect(ir, op);
869 if (!fMCRec->fRasterClip.op(ir, op)) {
875 *intersection = ir;
903 SkIRect ir; local
904 if (!this->clipRectBounds(bounds, flags, &ir, paint ? paint->getImageFilter() : NULL)) {
929 SkImageInfo info = SkImageInfo::MakeN32(ir
1533 SkIRect ir; local
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
H A Dwork_unit.py17 import ir namespace
113 self.node = ir.TransUnit( self.node )
/external/mesa3d/src/glsl/
H A Dir_reader.cpp304 ir_instruction *ir = read_instruction(sub, loop_ctx); local
305 if (ir != NULL) {
311 if (state->current_function == NULL && ir->as_variable() != NULL)
312 instructions->push_head(ir);
314 instructions->push_tail(ir);
748 ir_swizzle *ir = ir_swizzle::create(rvalue, swiz->value(),
750 if (ir == NULL)
753 return ir;
H A Dlink_uniforms.cpp25 #include "ir.h"
458 foreach_list(node, shader->ir) {
567 foreach_list(node, prog->_LinkedShaders[i]->ir) {
612 foreach_list(node, prog->_LinkedShaders[i]->ir) {
H A Dlink_uniform_initializers.cpp25 #include "ir.h"
166 foreach_list(node, shader->ir) {
H A Dlower_mat_op_to_vec.cpp34 #include "ir.h"
67 mat_op_to_vec_predicate(ir_instruction *ir) argument
69 ir_expression *expr = ir->as_expression();
/external/skia/src/core/
H A DSkScalerContext.cpp344 SkIRect ir; local
345 devPath.getBounds().roundOut(&ir);
347 if (ir.isEmpty() || !ir.is16Bit()) {
350 glyph->fLeft = ir.fLeft;
351 glyph->fTop = ir.fTop;
352 glyph->fWidth = SkToU16(ir.width());
353 glyph->fHeight = SkToU16(ir.height());
H A DSkCanvas.cpp833 SkIRect ir; local
838 r.roundOut(&ir);
840 if (!ir.intersect(clipBounds)) {
847 ir = clipBounds;
851 fClipStack.clipDevRect(ir, op);
853 if (!fMCRec->fRasterClip->op(ir, op)) {
859 *intersection = ir;
893 SkIRect ir; local
894 if (!this->clipRectBounds(bounds, flags, &ir, paint ? paint->getImageFilter() : NULL)) {
919 SkImageInfo info = SkImageInfo::MakeN32(ir
1639 SkIRect ir; local
[all...]
/external/valgrind/main/coregrind/
H A Dm_libcproc.c375 Int ir, zzz; local
382 ir = VG_(sigaction)(VKI_SIGCHLD, &sa, &saved_sa);
383 vg_assert(ir == 0);
388 ir = VG_(sigaction)(VKI_SIGCHLD, &sa2, NULL);
389 vg_assert(ir == 0);
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
H A Dbuiltin_function.cpp55 sh->ir = new(sh) exec_list;
59 _mesa_glsl_read_ir(st, sh->ir, protos, true);
66 _mesa_glsl_read_ir(st, sh->ir, functions[i], false);
76 reparent_ir(sh->ir, sh);
[all...]
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
H A Dp7-0x.cpp222 int &ir = check_narrowed<double>(vd); local
H A Dp7-cxx11-nowarn.cpp209 int &ir = check_narrowed<double>(vd); local
/external/clang/test/CXX/drs/
H A Ddr5xx.cpp210 int &ir = b * a; local
/external/clang/test/SemaCXX/
H A Dnullptr.cpp147 int &ir = (f1)(nullptr); local
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtzoffloc.cpp141 InitialTimeZoneRule *ir = new InitialTimeZoneRule( local
146 RuleBasedTimeZone *rbPT = new RuleBasedTimeZone("Rule based Pacific Time", ir);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/llvm/
H A Dinvocation.cpp254 enum pipe_shader_ir ir,
266 switch (ir) {
253 compile_program_llvm(const compat::string &source, enum pipe_shader_ir ir, const compat::string &triple) argument
/external/chromium_org/third_party/skia/include/core/
H A DSkClipStack.h326 void clipDevRect(const SkIRect& ir, SkRegion::Op op) { argument
328 r.set(ir);
/external/icu/icu4c/source/test/intltest/
H A Dtzoffloc.cpp141 InitialTimeZoneRule *ir = new InitialTimeZoneRule( local
146 RuleBasedTimeZone *rbPT = new RuleBasedTimeZone("Rule based Pacific Time", ir);
/external/mesa3d/src/gallium/state_trackers/clover/llvm/
H A Dinvocation.cpp254 enum pipe_shader_ir ir,
266 switch (ir) {
253 compile_program_llvm(const compat::string &source, enum pipe_shader_ir ir, const compat::string &triple) argument

Completed in 581 milliseconds

<<111213141516