HomeSort by relevance Sort by last modified time
    Searched refs:ir (Results 126 - 150 of 164) sorted by null

1 2 3 4 56 7

  /external/mesa3d/src/glsl/
builtin_function.cpp 47 sh->ir = new(sh) exec_list;
50 /* Read the IR containing the prototypes */
51 _mesa_glsl_read_ir(st, sh->ir, protos, true);
53 /* Read ALL the function bodies, telling the IR reader not to scan for
54 * prototypes (we've already created them). The IR reader will skip any
58 _mesa_glsl_read_ir(st, sh->ir, functions[i], false);
68 reparent_ir(sh->ir, sh);
    [all...]
ir_reader.cpp 347 ir_instruction *ir = read_instruction(st, sub, loop_ctx); local
348 if (ir != NULL) {
354 if (st->current_function == NULL && ir->as_variable() != NULL)
355 instructions->push_head(ir);
357 instructions->push_tail(ir);
806 ir_swizzle *ir = ir_swizzle::create(rvalue, swiz->value(),
808 if (ir == NULL)
811 return ir;
    [all...]
lower_mat_op_to_vec.cpp 34 #include "ir.h"
67 mat_op_to_vec_predicate(ir_instruction *ir)
69 ir_expression *expr = ir->as_expression();
ir.h 42 * \defgroup IR Intermediate representation nodes
63 * Zero is unused so that the IR validator can detect cases where
88 * Base class of all IR instructions
104 * \name IR instruction downcast functions
532 * IR instruction representing high-level if-statements
565 * IR instruction representing a high-level loop structure.
924 * IR instruction representing a function call
990 * Generates an inline version of the function before @ir,
993 ir_rvalue *generate_inline(ir_instruction *ir);
1010 * \name Jump-like IR instructions
    [all...]
ast_to_hir.cpp 57 #include "ir.h"
869 * to multiple IR instructions.
1741 ir_rvalue *const ir = array_size->hir(& dummy_instructions, state); local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/
GLWebViewState.cpp 174 IntRect ir(r.fLeft, r.fTop, r.width(), r.height());
175 inval(ir);
435 IntRect ir(0, 0, 1E6, 1E6);
436 inval(ir);
  /external/icu4c/test/intltest/
tzoffloc.cpp 141 InitialTimeZoneRule *ir = new InitialTimeZoneRule( local
146 RuleBasedTimeZone *rbPT = new RuleBasedTimeZone("Rule based Pacific Time", ir);
tzrulets.cpp 165 InitialTimeZoneRule *ir = new InitialTimeZoneRule( local
171 RuleBasedTimeZone *rbtz1 = new RuleBasedTimeZone("RBTZ1", ir->clone());
196 RuleBasedTimeZone *rbtz2 = new RuleBasedTimeZone("RBTZ2", ir->clone());
217 RuleBasedTimeZone *rbtz3 = new RuleBasedTimeZone("RBTZ3", ir->clone());
376 RuleBasedTimeZone rbtz0("RBTZ1", ir->clone());
416 delete ir;
436 InitialTimeZoneRule *ir = new InitialTimeZoneRule("EST", -5*HOUR, 0); local
437 RuleBasedTimeZone *rbtz = new RuleBasedTimeZone("EST5EDT", ir);
1523 const InitialTimeZoneRule *ir = NULL; local
    [all...]
intltest.cpp 1571 static int32_t iy, ir[98]; local
    [all...]
  /external/quake/quake/src/WinQuake/
snd_mix.cpp 243 int ir = endtime - paintedtime; local
245 ir += il;
251 // if ((dwNewpos >= il) && (dwNewpos <= ir))
252 // Con_Printf("%d-%d p %d c\n", il, ir, dwNewpos);
  /external/bluetooth/bluez/lib/
hci.c 950 struct hci_inquiry_req *ir; local
972 buf = malloc(sizeof(*ir) + (sizeof(inquiry_info) * (nrsp)));
976 ir = buf;
977 ir->dev_id = dev_id;
978 ir->num_rsp = num_rsp;
979 ir->length = len;
980 ir->flags = flags;
983 memcpy(ir->lap, lap, 3);
985 ir->lap[0] = 0x33;
986 ir->lap[1] = 0x8b
    [all...]
  /external/skia/src/core/
SkBlitter.cpp 461 const SkIRect* ir) {
465 if (clip->isEmpty() || (ir && !SkIRect::Intersects(clipR, *ir))) {
468 if (ir == NULL || !clipR.contains(*ir)) {
SkScan_Antihair.cpp 441 SkIRect ir;
443 ir.set( SkFDot6Floor(left) - 1,
448 if (clip->quickReject(ir)) {
451 if (!clip->quickContains(ir)) {
452 SkRegion::Cliperator iter(*clip, ir);
SkDraw.cpp 746 SkIRect ir; local
747 devRect.roundOut(&ir);
750 ir.inset(-1, -1);
752 if (fClip->quickReject(ir))
1120 SkIRect ir; local
1146 SkIRect ir; local
    [all...]
  /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/bluetooth/bluez/test/
hciemu.c 644 read_ext_inquiry_response_rp ir; local
718 ir.status = 0x00;
719 ir.fec = vdev.eir_fec;
720 memcpy(ir.data, vdev.eir_data, HCI_MAX_EIR_LENGTH);
721 command_complete(ogf, ocf, sizeof(ir), &ir);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
Encodings.properties 247 KS_C_5601-1987 KS_C_5601-1987,iso-ir-149,KS_C_5601-1989,KSC_5601,csKSC56011987 0x007F
  /external/mesa3d/
Android.mk 49 src/glsl/ir.cpp \
  /external/clang/lib/CodeGen/
CGException.cpp 661 for (EHScopeStack::iterator ir = EHStack.begin(); true; ++ir) {
662 ir->setCachedLandingPad(LP);
663 if (!isNonEHScope(*ir)) break;
670 // LLVM's EH IR which breaks semantics after inlining. This same
679 // provides an integer indicating why it's stopping. In LLVM IR,
685 // the IR exactly describes the layout of the output code.
714 /// No hacks at all; ideal IR generation.
734 // Save the current IR generation state.
855 // Restore the old IR generation state
    [all...]
CGExprComplex.cpp 39 ComplexExprEmitter(CodeGenFunction &cgf, bool ir=false, bool ii=false)
40 : CGF(cgf), Builder(CGF.Builder), IgnoreReal(ir), IgnoreImag(ii) {
363 case CK_Dependent: llvm_unreachable("dependent cast kind in IR gen!");
511 Value *ResIr = Builder.CreateFMul(Op.LHS.first, Op.RHS.second, "mul.ir");
519 Value *ResIr = Builder.CreateMul(Op.LHS.first, Op.RHS.second, "mul.ir");
  /external/valgrind/main/coregrind/
launcher-aix5.c 1137 Int ir = close(info->_file._ldinfo_fd); local
1158 Int ir = close(info->_file._ldinfo_fd); local
    [all...]
  /external/webkit/Source/WebKit/android/jni/
PictureSet.cpp 173 SkIRect ir = cliperator.rect(); local
175 splitAdd(ir);
178 newArea.setRect(ir);
    [all...]
  /frameworks/base/core/jni/android/graphics/
Canvas.cpp 903 SkIRect ir; local
    [all...]
Paint.cpp 806 SkIRect ir; local
809 r.roundOut(&ir);
810 GraphicsJNI::irect_to_jrect(ir, env, bounds);
    [all...]
  /external/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...]

Completed in 801 milliseconds

1 2 3 4 56 7