Searched refs:origWidth (Results 1 – 7 of 7) sorted by relevance
/external/skia/src/core/ |
D | SkBitmapCache.cpp | 57 SkBitmapCacheDesc SkBitmapCacheDesc::Make(uint32_t imageID, int origWidth, int origHeight) { in Make() argument 59 SkASSERT(origWidth > 0 && origHeight > 0); in Make() 60 return { imageID, 0, 0, {0, 0, origWidth, origHeight} }; in Make()
|
D | SkBitmapCache.h | 42 static SkBitmapCacheDesc Make(uint32_t genID, int origWidth, int origHeight);
|
D | SkAAClip.cpp | 426 const int origWidth = *data++; in test_trim_row_left_right() local 427 assert_row_width(data, origWidth); in test_trim_row_left_right() 428 int skip = trim_row_left_right(data, origWidth, trimL, trimR); in test_trim_row_left_right() 430 int expectedWidth = origWidth - trimL - trimR; in test_trim_row_left_right()
|
/external/skia/src/codec/ |
D | SkIcoCodec.cpp | 208 int origWidth = this->getInfo().width(); in onGetScaledDimensions() local 210 float desiredSize = desiredScale * origWidth * origHeight; in onGetScaledDimensions() 212 float minError = ((float) (origWidth * origHeight)) - desiredSize + 1.0f; in onGetScaledDimensions()
|
D | SkPngCodec.cpp | 839 png_uint_32 origWidth, origHeight; in infoCallback() local 841 png_get_IHDR(fPng_ptr, fInfo_ptr, &origWidth, &origHeight, &bitDepth, in infoCallback() 930 SkImageInfo imageInfo = encodedInfo.makeImageInfo(origWidth, origHeight, colorSpace); in infoCallback()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
D | TargetLowering.cpp | 2028 unsigned origWidth = N0.getValueType().getSizeInBits(); in SimplifySetCC() local 2029 unsigned maskWidth = origWidth; in SimplifySetCC() 2033 origWidth = Lod->getMemoryVT().getSizeInBits(); in SimplifySetCC() 2036 for (unsigned width = origWidth / 2; width>=8; width /= 2) { in SimplifySetCC() 2038 for (unsigned offset=0; offset<origWidth/width; offset++) { in SimplifySetCC() 2041 bestOffset = (origWidth/width - offset - 1) * (width/8); in SimplifySetCC()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | TargetLowering.cpp | 1523 unsigned origWidth = N0.getValueType().getSizeInBits(); in SimplifySetCC() local 1524 unsigned maskWidth = origWidth; in SimplifySetCC() 1528 origWidth = Lod->getMemoryVT().getSizeInBits(); in SimplifySetCC() 1531 for (unsigned width = origWidth / 2; width>=8; width /= 2) { in SimplifySetCC() 1533 for (unsigned offset=0; offset<origWidth/width; offset++) { in SimplifySetCC() 1536 bestOffset = (origWidth/width - offset - 1) * (width/8); in SimplifySetCC()
|