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

  /external/skia/src/core/
SkColorSpaceXform.cpp 92 static void build_table_linear_from_gamma(float* outTable, float exponent) {
94 *outTable++ = powf(x, exponent);
98 // outTable is always 256 entries, inTable may be larger or smaller.
99 static void build_table_linear_from_gamma(float* outTable, const float* inTable,
102 memcpy(outTable, inTable, sizeof(float) * 256);
107 *outTable++ = interp_lut(x, inTable, inTableSize);
112 static void build_table_linear_from_gamma(float* outTable, float g, float a, float b, float c,
118 *outTable++ = clamp_0_1(powf(a * x + b, g) + e);
120 *outTable++ = clamp_0_1(c * x + f);
129 static void build_table_linear_to_gamma(uint8_t* outTable, float exponent)
    [all...]
SkColorSpaceXform_A2B.cpp 302 float* outTable = fAlloc.makeArray<float>(kMinTableSize);
305 outTable[i] = interp_lut(i * step, fn->fData, fn->fSize);
308 fn->fData = outTable;
SkColorSpace_ICC.cpp 570 float* outTable = (float*) storage;
573 outTable[i] = (read_big_endian_u16((const uint8_t*) &inTable[i])) / 65535.0f;
    [all...]
  /external/skqp/src/core/
SkColorSpaceXform.cpp 92 static void build_table_linear_from_gamma(float* outTable, float exponent) {
94 *outTable++ = powf(x, exponent);
98 // outTable is always 256 entries, inTable may be larger or smaller.
99 static void build_table_linear_from_gamma(float* outTable, const float* inTable,
102 memcpy(outTable, inTable, sizeof(float) * 256);
107 *outTable++ = interp_lut(x, inTable, inTableSize);
112 static void build_table_linear_from_gamma(float* outTable, float g, float a, float b, float c,
118 *outTable++ = clamp_0_1(powf(a * x + b, g) + e);
120 *outTable++ = clamp_0_1(c * x + f);
129 static void build_table_linear_to_gamma(uint8_t* outTable, float exponent)
    [all...]
SkColorSpaceXform_A2B.cpp 302 float* outTable = fAlloc.makeArray<float>(kMinTableSize);
305 outTable[i] = interp_lut(i * step, fn->fData, fn->fSize);
308 fn->fData = outTable;
SkColorSpace_ICC.cpp 570 float* outTable = (float*) storage;
573 outTable[i] = (read_big_endian_u16((const uint8_t*) &inTable[i])) / 65535.0f;
    [all...]
  /external/icu/icu4c/source/common/
ucnv_io.cpp     [all...]
  /frameworks/base/tools/aapt/
ResourceTable.cpp 268 static void appendTypeInfo(ResourceTable* outTable, const String16& pkg,
278 outTable->appendTypeComment(pkg, typeName, ident, fullMsg);
284 outTable->appendTypeComment(pkg, typeName, ident,
315 status_t createIfNeeded(ResourceTable* outTable)
322 if (!outTable->makeAttribute(myPackage, ident, sourcePos, type, comment, appendComment)) {
333 ResourceTable* outTable,
373 attr.createIfNeeded(outTable);
377 attr.createIfNeeded(outTable);
390 attr.createIfNeeded(outTable);
392 err = outTable->addBag(attr.sourcePos, myPackage, attr16, attr.ident
    [all...]
ResourceTable.h 65 ResourceTable* outTable);

Completed in 451 milliseconds