HomeSort by relevance Sort by last modified time
    Searched defs:ir (Results 151 - 175 of 220) sorted by null

1 2 3 4 5 67 8 9

  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
p7-0x.cpp 222 int &ir = check_narrowed<double>(vd); local
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5-0x.cpp 102 int& ir = B(); member in namespace:std_example_1
  /external/jdiff/src/jdiff/
DiffMyers.java 731 Integer ir = (Integer)h.get(data[i]); local
732 if (ir == null)
735 equivs[i] = ir.intValue();
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs.h 50 #include "glsl/ir.h"
178 * Annotation for the generated IR. One of the two can be set.
180 ir_instruction *ir; member in class:fs_inst
197 void visit(ir_variable *ir);
198 void visit(ir_assignment *ir);
199 void visit(ir_dereference_variable *ir);
200 void visit(ir_dereference_record *ir);
201 void visit(ir_dereference_array *ir);
202 void visit(ir_expression *ir);
203 void visit(ir_texture *ir);
    [all...]
brw_fs_visitor.cpp 26 * This file supports generating the FS LIR from the GLSL IR. The LIR
28 * in the GLSL IR or in the native code.
54 fs_visitor::visit(ir_variable *ir)
58 if (variable_storage(ir))
61 if (ir->mode == ir_var_in) {
62 if (!strcmp(ir->name, "gl_FragCoord")) {
63 reg = emit_fragcoord_interpolation(ir);
64 } else if (!strcmp(ir->name, "gl_FrontFacing")) {
65 reg = emit_frontfacing_interpolation(ir);
67 reg = emit_general_interpolation(ir);
1685 ir_instruction *ir = (ir_instruction *)node; local
1695 ir_instruction *ir = (ir_instruction *)node; local
1742 ir_instruction *ir = (ir_instruction *)node; local
1798 ir_instruction *ir = (ir_instruction *)node; local
    [all...]
brw_vec4.h 38 #include "glsl/ir.h"
192 * Annotation for the generated IR. One of the two can be set.
194 ir_instruction *ir; member in class:brw::vec4_instruction
234 * GLSL IR currently being processed, which is associated with our
235 * driver IR instructions for debugging purposes.
261 void reladdr_to_temp(ir_instruction *ir, src_reg *reg, int *num_reladdr);
295 * for the ir->location's used.
311 void setup_builtin_uniform_values(ir_variable *ir);
372 bool try_rewrite_rhs_to_dst(ir_assignment *ir,
381 void emit_bool_to_cond_code(ir_rvalue *ir, uint32_t *predicate)
    [all...]
  /external/opencv/cv/src/
cvundistort.cpp 267 double a[9], ar[9], r[9], ir[9], k[5]={0,0,0,0,0}; local
275 CvMat _ir = cvMat( 3, 3, CV_64F, ir );
351 double _x = i*ir[1] + ir[2], _y = i*ir[4] + ir[5], _w = i*ir[7] + ir[8];
353 for( j = 0; j < size.width; j++, _x += ir[0], _y += ir[3], _w += ir[6]
    [all...]
  /external/skia/src/core/
SkScalerContext.cpp 344 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());
    [all...]
SkScan_AntiPath.cpp 47 BaseSuperBlitter(SkBlitter* realBlitter, const SkIRect& ir,
78 BaseSuperBlitter::BaseSuperBlitter(SkBlitter* realBlitter, const SkIRect& ir,
83 * We use the clip bounds instead of the ir, since we may be asked to
96 fTop = ir.fTop;
97 fCurrIY = ir.fTop - 1;
98 fCurrY = (ir.fTop << SHIFT) - 1;
106 SuperBlitter(SkBlitter* realBlitter, const SkIRect& ir,
130 SuperBlitter::SuperBlitter(SkBlitter* realBlitter, const SkIRect& ir,
132 : BaseSuperBlitter(realBlitter, ir, clip) {
377 MaskSuperBlitter(SkBlitter* realBlitter, const SkIRect& ir,
607 SkIRect ir; local
    [all...]
SkScan_Path.cpp 510 void sk_blit_above(SkBlitter* blitter, const SkIRect& ir, const SkRegion& clip) {
517 tmp.fBottom = ir.fTop;
523 void sk_blit_below(SkBlitter* blitter, const SkIRect& ir, const SkRegion& clip) {
529 tmp.fTop = ir.fBottom;
540 * skipRejectTest, so we don't abort drawing just because the src bounds (ir)
544 const SkIRect& ir, bool skipRejectTest) {
550 if (!skipRejectTest && !SkIRect::Intersects(*fClipRect, ir)) { // completely clipped out
555 if (fClipRect->contains(ir)) {
559 if (fClipRect->fLeft > ir.fLeft || fClipRect->fRight < ir.fRight)
604 SkIRect ir; local
711 SkIRect ir; local
    [all...]
  /frameworks/base/media/java/android/media/
ImageReader.java 501 final ImageReader ir = weakSelf.get(); local
502 if (ir == null) {
507 synchronized (ir.mListenerLock) {
508 handler = ir.mListenerHandler;
  /frameworks/rs/driver/runtime/
rs_cl.c 1193 float ir; local
    [all...]
  /external/chromium_org/native_client_sdk/src/examples/demo/earth/
earth.cc 494 unsigned int ir = Clamp255(pr * tr + nr * ipr); local
498 unsigned int color = MakeBGRA(ib, ig, ir, 0xFF);
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/src/earth/
earth.cc 532 unsigned int ir = Clamp255(pr * tr + nr * ipr); local
536 unsigned int color = MakeRGBA(ir, ig, ib, 0xFF);
  /external/chromium_org/third_party/icu/source/test/intltest/
intltest.cpp 1571 static int32_t iy, ir[98]; local
    [all...]
  /external/chromium_org/third_party/libpng/
pngrtran.c 498 int ir, ig, ib; local
503 for (ir = 0; ir < num_red; ir++)
505 /* int dr = abs(ir - r); */
506 int dr = ((ir > r) ? ir - r : r - ir);
507 int index_r = (ir << (PNG_DITHER_BLUE_BITS +
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
ast_function.cpp 27 #include "ir.h"
98 * that 'const_in' formal parameters (an extension in our IR) correspond to
143 /* This AST-based check catches errors like f(i++). The IR-based
145 * IR-level is just a temporary value, which is an l-value.
232 * Into IR that's equivalent to this:
610 ir_rvalue *ir = (ir_rvalue *) n; local
611 ir_rvalue *result = ir;
618 ir->type->vector_elements,
619 ir->type->matrix_columns);
626 result = convert_component(ir, desired_type)
1272 ir_rvalue *ir = (ir_rvalue *) node; local
1438 ir_rvalue *ir = (ir_rvalue *) n; local
    [all...]
ast_to_hir.cpp 58 #include "ir.h"
1856 ir_rvalue *const ir = array_size->hir(& dummy_instructions, state); local
    [all...]
ir_reader.cpp 304 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;
linker.cpp 69 #include "ir.h"
90 virtual ir_visitor_status visit_enter(ir_assignment *ir)
92 ir_variable *const var = ir->lhs->variable_referenced();
102 virtual ir_visitor_status visit_enter(ir_call *ir)
104 exec_list_iterator sig_iter = ir->callee->parameters.iterator();
105 foreach_iter(exec_list_iterator, iter, *ir) {
120 if (ir->return_deref != NULL) {
121 ir_variable *const var = ir->return_deref->variable_referenced();
154 virtual ir_visitor_status visit(ir_dereference_variable *ir)
156 if (strcmp(this->name, ir->var->name) == 0)
2265 struct exec_list *ir = prog->_LinkedShaders[MESA_SHADER_FRAGMENT]->ir; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_fs.cpp 26 * This file drives the GLSL IR -> LIR translation, contains the
567 fs_visitor::setup_builtin_uniform_values(ir_variable *ir)
569 const ir_state_slot *const slots = ir->state_slots;
570 assert(ir->state_slots != NULL);
572 for (unsigned int i = 0; i < ir->num_state_slots; i++) {
598 fs_visitor::emit_fragcoord_interpolation(ir_variable *ir)
600 fs_reg *reg = new(this->mem_ctx) fs_reg(this, ir->type);
602 bool flip = !ir->origin_upper_left ^ c->key.render_to_fbo;
605 if (ir->pixel_center_integer) {
613 if (!flip && ir->pixel_center_integer)
1984 ir_instruction *ir = (ir_instruction *)node; local
    [all...]
brw_vec4_visitor.cpp 42 this->ir = v->base_ir;
57 new_inst->ir = inst->ir;
355 ir_instruction *ir = (ir_instruction *)node; local
357 base_ir = ir;
358 ir->accept(this);
559 vec4_visitor::setup_builtin_uniform_values(ir_variable *ir)
561 const ir_state_slot *const slots = ir->state_slots;
562 assert(ir->state_slots != NULL);
564 for (unsigned int i = 0; i < ir->num_state_slots; i++)
    [all...]
  /external/chromium_org/third_party/skia/tests/
PictureTest.cpp 340 SkIRect ir; local
341 rect->round(&ir);
342 rect->set(ir);
375 SkIRect ir; local
376 subset.roundOut(&ir);
378 if (!ir.intersect(0, 0, bm.width()-1, bm.height()-1)) {
391 for (int y = ir.fTop; y < ir.fBottom; ++y) {
392 for (int x = ir.fLeft; x < ir.fRight; ++x)
    [all...]
  /external/clang/test/SemaCXX/
overload-call.cpp 311 int &ir = a(0,0); local
312 (void)ir;
376 int &ir = f(b); local
476 int &ir = foo(d); local
518 int &ir = f(arr); local
538 int &ir = (&foo)(0); local
overloaded-operator.cpp 134 int &ir = *ptr; local
145 int& ir = a[17]; local
180 int &ir = c(1); local

Completed in 1218 milliseconds

1 2 3 4 5 67 8 9