OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:coordCount
(Results
1 - 5
of
5
) sorted by null
/frameworks/av/services/camera/libcameraservice/device3/
DistortionMapper.h
75
*
coordCount
: Number of (x,y) pairs to transform
79
status_t mapRawToCorrected(int32_t *coordPairs, int
coordCount
, bool clamp,
99
*
coordCount
: Number of (x,y) pairs to transform
103
status_t mapCorrectedToRaw(int32_t* coordPairs, int
coordCount
, bool clamp,
169
status_t mapCorrectedToRawImpl(T* coordPairs, int
coordCount
, bool clamp, bool simple) const;
173
status_t mapCorrectedToRawImplSimple(T* coordPairs, int
coordCount
, bool clamp) const;
175
status_t mapRawToCorrectedSimple(int32_t *coordPairs, int
coordCount
, bool clamp) const;
DistortionMapper.cpp
226
status_t DistortionMapper::mapRawToCorrected(int32_t *coordPairs, int
coordCount
,
230
if (simple) return mapRawToCorrectedSimple(coordPairs,
coordCount
, clamp);
237
for (int i = 0; i <
coordCount
* 2; i += 2) {
285
status_t DistortionMapper::mapRawToCorrectedSimple(int32_t *coordPairs, int
coordCount
,
291
for (int i = 0; i <
coordCount
* 2; i += 2) {
331
status_t DistortionMapper::mapCorrectedToRaw(int32_t *coordPairs, int
coordCount
, bool clamp,
333
return mapCorrectedToRawImpl(coordPairs,
coordCount
, clamp, simple);
337
status_t DistortionMapper::mapCorrectedToRawImpl(T *coordPairs, int
coordCount
, bool clamp,
341
if (simple) return mapCorrectedToRawImplSimple(coordPairs,
coordCount
, clamp);
345
for (int i = 0; i <
coordCount
* 2; i += 2)
[
all
...]
/development/samples/Snake/src/com/example/android/snake/
SnakeView.java
229
int
coordCount
= rawArray.length;
230
for (int index = 0; index <
coordCount
; index += 2) {
/frameworks/av/services/camera/libcameraservice/tests/
DistortionMapperTest.cpp
221
const size_t
coordCount
= 1e5; // Number of random test points
228
std::vector<int32_t> randCoords(
coordCount
* 2);
/external/fonttools/Lib/fontTools/ttLib/tables/
TupleVariation.py
459
coordCount
= {}
462
coordCount
[coord] =
coordCount
.get(coord, 0) + 1
464
for (coord, count) in
coordCount
.items() if count > 1]
Completed in 95 milliseconds