OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:outScale
(Results
1 - 3
of
3
) sorted by null
/cts/apps/CtsVerifier/lib/colorchecker/
colorchecker.cpp
282
/* Scales input down by factor of
outScale
to output. Assumes input size is
289
int
outScale
) {
290
for (int oY = 0, iY = 0; oY < outHeight; oY++, iY +=
outScale
) {
291
for (int oX = 0, iX = 0; oX < outWidth; oX++, iX +=
outScale
) {
294
for (int j = 0; j <
outScale
; j++) {
295
for (int k = 0; k <
outScale
; k++) {
301
in += rowSpan -
outScale
* totalChannels;
303
output[0] = out[0] / (
outScale
*
outScale
);
304
output[1] = out[1] / (
outScale
* outScale)
[
all
...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
ResourceHelper.java
474
private static boolean parseUnit(String str, TypedValue outValue, float[]
outScale
) {
479
applyUnit(unit, outValue,
outScale
);
487
private static void applyUnit(UnitEntry unit, TypedValue outValue, float[]
outScale
) {
490
outScale
[0] = unit.scale;
/frameworks/base/libs/utils/
ResourceTypes.cpp
[
all
...]
Completed in 29 milliseconds