Searched defs:ir (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/jni/android/graphics/
H A DRegion.cpp93 SkIRect ir; local
95 ir.set(left, top, right, bottom);
96 bool result = dst->op(ir, (SkRegion::Op)op);
103 SkIRect ir; local
104 GraphicsJNI::jrect_to_irect(env, rectObject, &ir);
105 bool result = dst->op(ir, *region, (SkRegion::Op)op);
145 SkIRect ir; local
146 ir.set(left, top, right, bottom);
147 bool result = GetSkRegion(env, region)->quickReject(ir);
H A DGraphics.cpp208 SkIRect* GraphicsJNI::jrect_to_irect(JNIEnv* env, jobject obj, SkIRect* ir) argument
212 ir->set(env->GetIntField(obj, gRect_leftFieldID),
216 return ir;
219 void GraphicsJNI::irect_to_jrect(const SkIRect& ir, JNIEnv* env, jobject obj) argument
223 env->SetIntField(obj, gRect_leftFieldID, ir.fLeft);
224 env->SetIntField(obj, gRect_topFieldID, ir.fTop);
225 env->SetIntField(obj, gRect_rightFieldID, ir.fRight);
226 env->SetIntField(obj, gRect_bottomFieldID, ir.fBottom);
270 void GraphicsJNI::ipoint_to_jpoint(const SkIPoint& ir, JNIEnv* env, jobject obj) argument
274 env->SetIntField(obj, gPoint_xFieldID, ir
[all...]
H A DPaint.cpp903 SkIRect ir; local
913 r.roundOut(&ir);
914 GraphicsJNI::irect_to_jrect(ir, env, bounds);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatService.java130 private CatService(CommandsInterface ci, UiccCardApplication ca, IccRecords ir, argument
132 if (ci == null || ca == null || ir == null || context == null || fh == null
161 mIccRecords = ir;
192 IccRecords ir = null;
200 ir = ca.getIccRecords();
213 if (ci == null || ca == null || ir == null || context == null || fh == null
218 sInstance[slotId] = new CatService(ci, ca, ir, context, fh, ic, slotId);
219 } else if ((ir != null) && (mIccRecords != ir)) {
224 mIccRecords = ir;
[all...]
/frameworks/rs/driver/runtime/
H A Drs_cl.c1193 float ir; local
1194 SET_FLOAT_WORD(ir, ibits);
1195 ir -= 1.5f;
1196 float ir2 = ir*ir;
1198 ((0.666666667f / 0.693147181f) * ir) -
1200 ((0.098765432f / 0.693147181f) * ir*ir2) -
1202 ((0.026337449f / 0.693147181f) * ir*ir2*ir2) -
/frameworks/base/core/jni/
H A Dandroid_graphics_Canvas.cpp141 SkIRect ir; local
147 r.round(&ir);
149 (void)GraphicsJNI::irect_to_jrect(ir, env, bounds);

Completed in 93 milliseconds