HomeSort by relevance Sort by last modified time
    Searched refs:mFp (Results 1 - 4 of 4) sorted by null

  /frameworks/base/libs/androidfw/
Asset.cpp 356 : mStart(0), mLength(0), mOffset(0), mFp(NULL), mFileName(NULL), mMap(NULL), mBuf(NULL)
375 assert(mFp == NULL); // no reopen
398 mFp = fdopen(fd, "rb");
399 if (mFp == NULL)
407 if (fseek(mFp, mStart, SEEK_SET) != 0) {
421 assert(mFp == NULL); // no reopen
475 if (ftell(mFp) != mStart + mOffset) {
477 ftell(mFp), (long) mStart, (long) mOffset);
488 actual = fread(buf, 1, count, mFp);
514 if (mFp != NULL)
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicConvolve3x3.cpp 40 float mFp[16];
62 memcpy (&mFp, data, dataLength);
64 mIp[ct] = (short)(mFp[ct] * 255.f + 0.5f);
116 ConvolveOne(p, 0, out, py0, py1, py2, cp->mFp);
132 ConvolveOne(p, x1, out, py0, py1, py2, cp->mFp);
145 mFp[ct] = 1.f / 9.f;
146 mIp[ct] = (short)(mFp[ct] * 255.f + 0.5f);
rsCpuIntrinsicBlur.cpp 39 float mFp[104];
61 memset(mFp, 0, sizeof(mFp));
90 mFp[r + mIradius] = coeff1 * powf(e, floatR * floatR * coeff2);
91 normalizeFactor += mFp[r + mIradius];
97 mFp[r + mIradius] *= normalizeFactor;
301 OneVFU4(fout, pi, stride, cp->mFp, cp->mIradius * 2 + 1, x1, x2);
304 OneVU4(p, fout, x1, y, pin, stride, cp->mFp, cp->mIradius);
312 OneHU4(p, out, x1, buf, cp->mFp, cp->mIradius);
318 rsdIntrinsicBlurHFU4_K(out, buf - cp->mIradius, cp->mFp,
    [all...]
  /frameworks/base/include/androidfw/
Asset.h 251 FILE* mFp; // for read/seek

Completed in 147 milliseconds