Home
last modified time | relevance | path

Searched defs:y (Results 1 – 25 of 133) sorted by relevance

123456

/device/google/cuttlefish/guest/hals/camera/
DConverters.cpp34 for (int y = 0; y < height; y++) { in _YUV420SToRGB565() local
61 for (int y = 0; y < height; y++) { in _YUV420SToRGB32() local
124 const uint8_t* y = reinterpret_cast<const uint8_t*>(nv12); in NV12ToRGB565() local
131 const uint8_t* y = reinterpret_cast<const uint8_t*>(nv12); in NV12ToRGB32() local
138 const uint8_t* y = reinterpret_cast<const uint8_t*>(nv21); in NV21ToRGB565() local
145 const uint8_t* y = reinterpret_cast<const uint8_t*>(nv21); in NV21ToRGB32() local
DConverters.h169 static __inline__ void R8G8B8ToYUV(uint8_t r, uint8_t g, uint8_t b, uint8_t* y, in R8G8B8ToYUV()
177 static __inline__ void RGB565ToYUV(uint16_t rgb, uint8_t* y, uint8_t* u, in RGB565ToYUV()
183 static __inline__ void RGB32ToYUV(uint32_t rgb, uint8_t* y, uint8_t* u, in RGB32ToYUV()
213 #define YUV2R(y, u, v) clamp((298 * ((y)-16) + 409 * ((v)-128) + 128) >> 8) argument
214 #define YUV2G(y, u, v) \ argument
216 #define YUV2B(y, u, v) clamp((298 * ((y)-16) + 516 * ((u)-128) + 128) >> 8) argument
219 static __inline__ uint16_t YUVToRGB565(int y, int u, int v) { in YUVToRGB565()
231 static __inline__ uint32_t YUVToRGB32(int y, int u, int v) { in YUVToRGB32()
DEmulatedFakeCameraDevice.cpp261 for (int y = 0; y < mFrameHeight; y++) { in drawCheckerboard() local
307 void EmulatedFakeCameraDevice::drawSquare(int x, int y, int size, in drawSquare()
357 for (int y = 0; y < mFrameHeight; y++, pY += mFrameWidth) { in drawStripes() local
/device/google/contexthub/firmware/lib/libm/
Dwf_fmod.c24 float fmodf(float x, float y) /* wrapper fmodf */ in fmodf()
64 double fmod(double x, double y) in fmod()
Dwf_pow.c24 float powf(float x, float y) /* wrapper powf */ in powf()
170 double pow(double x, double y) in pow()
Dwf_atan2.c25 float atan2f(float y, float x) /* wrapper atan2f */ in atan2f()
37 double atan2(double y, double x) in atan2()
/device/linaro/dragonboard/qcom/rmtfs/
Dutil.h4 #define MIN(x, y) ((x) < (y) ? (x) : (y)) argument
5 #define MAX(x, y) ((x) > (y) ? (x) : (y)) argument
/device/google/contexthub/firmware/os/inc/
Dtoolchain.h66 #define SET_INTERNAL_LOCATION(x, y) _Pragma((x, y)) __root argument
68 #define SET_INTERNAL_LOCATION_ATTRIBUTES(x, y) argument
70 #define SET_EXTERNAL_APP_ATTRIBUTES(x, y, z) argument
72 #define SET_EXTERNAL_APP_VERSION(x, y, z) argument
/device/generic/goldfish/camera/
DConverters.h153 R8G8B8ToYUV(uint8_t r, uint8_t g, uint8_t b, uint8_t* y, uint8_t* u, uint8_t* v) in R8G8B8ToYUV()
162 RGB565ToYUV(uint16_t rgb, uint8_t* y, uint8_t* u, uint8_t* v) in RGB565ToYUV()
169 RGB32ToYUV(uint32_t rgb, uint8_t* y, uint8_t* u, uint8_t* v) in RGB32ToYUV()
199 #define YUV2R(y, u, v) clamp((298 * ((y)-16) + 409 * ((v)-128) + 128) >> 8) argument
200 #define YUV2G(y, u, v) clamp((298 * ((y)-16) - 100 * ((u)-128) - 208 * ((v)-128) + 128) >> 8) argument
201 #define YUV2B(y, u, v) clamp((298 * ((y)-16) + 516 * ((u)-128) + 128) >> 8) argument
206 YUVToRGB565(int y, int u, int v) in YUVToRGB565()
218 YUVToRGB32(int y, int u, int v) in YUVToRGB32()
DConverters.cpp44 for (int y = 0; y < height; y++) { in _YUV420SToRGB565() local
73 for (int y = 0; y < height; y++) { in _YUV420SToRGB32() local
173 const uint8_t* y = reinterpret_cast<const uint8_t*>(nv12); in NV12ToRGB565() local
181 const uint8_t* y = reinterpret_cast<const uint8_t*>(nv12); in NV12ToRGB32() local
189 const uint8_t* y = reinterpret_cast<const uint8_t*>(nv21); in NV21ToRGB565() local
197 const uint8_t* y = reinterpret_cast<const uint8_t*>(nv21); in NV21ToRGB32() local
DEmulatedFakeCameraDevice.cpp280 for(int y = 0; y < mFrameHeight; y++) { in drawCheckerboard() local
344 int y, in drawSquare()
387 for (int y = 0; y < mFrameHeight / 2; ++y) { in drawSolid() local
404 for (int y = 0; y < mFrameHeight; y++, pY += mYStride) { in drawStripes() local
/device/google/contexthub/firmware/os/algos/common/math/
Dvec.h49 float x, y, z; member
53 float x, y, z, w; member
57 static inline void initVec3(struct Vec3 *v, float x, float y, float z) { in initVec3()
168 static inline void initVec4(struct Vec4 *v, float x, float y, float z, in initVec4()
/device/generic/goldfish-opengl/android-emu/android/base/
DTracing.h41 #define __AEMU_GENSYM2(x,y) x##y argument
42 #define __AEMU_GENSYM1(x,y) __AEMU_GENSYM2(x,y) argument
/device/google/cuttlefish/host/libs/wayland/
Dwayland_compositor.cpp39 int32_t y, in region_add()
59 int32_t y, in region_subtract()
85 int32_t y) { in surface_attach()
98 int32_t y, in surface_damage()
160 int32_t y, in surface_damage_buffer()
/device/google/contexthub/firmware/os/algos/calibration/accelerometer/
Daccel_cal.c233 uint64_t sample_time_nanos, float x, float y, in accelStillnessDetection()
416 bool accelCalUpdateBias(struct AccelCal *acc, float *x, float *y, float *z) { in accelCalUpdateBias()
437 void accelCalBiasSet(struct AccelCal *acc, float x, float y, float z) { in accelCalBiasSet()
444 void accelCalBiasRemove(struct AccelCal *acc, float *x, float *y, float *z) { in accelCalBiasRemove()
452 float y, float z, float temp) { in accelCalRun()
/device/google/contexthub/firmware/variant/nucleo/inc/variant/
Dvariant.h43 #define BMI160_TO_ANDROID_COORDINATE(x, y, z) \ argument
49 #define BMM150_TO_ANDROID_COORDINATE(x, y, z) \ argument
/device/generic/goldfish-opengl/system/renderControl_enc/
DrenderControl_entry.cpp205 void rcReadColorBuffer(uint32_t colorbuffer, GLint x, GLint y, GLint width, GLint height, GLenum fo… in rcReadColorBuffer()
211 int rcUpdateColorBuffer(uint32_t colorbuffer, GLint x, GLint y, GLint width, GLint height, GLenum f… in rcUpdateColorBuffer()
271 int rcUpdateColorBufferDMA(uint32_t colorbuffer, GLint x, GLint y, GLint width, GLint height, GLenu… in rcUpdateColorBufferDMA()
325 int rcGetDisplayPose(uint32_t displayId, GLint* x, GLint* y, uint32_t* w, uint32_t* h) in rcGetDisplayPose()
331 int rcSetDisplayPose(uint32_t displayId, GLint x, GLint y, uint32_t w, uint32_t h) in rcSetDisplayPose()
343 void rcReadColorBufferYUV(uint32_t colorbuffer, GLint x, GLint y, GLint width, GLint height, void* … in rcReadColorBufferYUV()
/device/google/contexthub/firmware/variant/lunchbox/inc/variant/
Dvariant.h50 #define BMI160_TO_ANDROID_COORDINATE(x, y, z) \ argument
56 #define BMM150_TO_ANDROID_COORDINATE(x, y, z) \ argument
/device/google/contexthub/util/nanotool/
Dcalibrationfile.cpp98 bool CalibrationFile::SetTripleAxis(const char *key, int32_t x, int32_t y, in SetTripleAxis()
108 bool CalibrationFile::SetFourAxis(const char *key, int32_t x, int32_t y, in SetFourAxis()
/device/google/contexthub/firmware/variant/neonkey/inc/variant/
Dvariant.h61 #define BMI160_TO_ANDROID_COORDINATE(x, y, z) \ argument
67 #define BMM150_TO_ANDROID_COORDINATE(x, y, z) \ argument
/device/google/contexthub/firmware/os/cpu/cortexm4/inc/cpu/cmsis/
Darm_math.h502 q31_t y) in mult32x64()
647 uint32_t y) in __SSAT()
695 q31_t y) in __QADD8()
722 q31_t y) in __QSUB8()
752 q31_t y) in __QADD16()
775 q31_t y) in __SHADD16()
798 q31_t y) in __QSUB16()
820 q31_t y) in __SHSUB16()
842 q31_t y) in __QASX()
860 q31_t y) in __SHASX()
[all …]
/device/google/cuttlefish/guest/hals/camera/fake-pipeline2/
DSensor.cpp389 for (unsigned int y = 0; y < mResolution[1]; y++) { in captureRaw() local
429 for (unsigned int y = 0, outY = 0; y < mResolution[1]; y += inc, outY++) { in captureRGBA() local
458 for (unsigned int y = 0, outY = 0; y < mResolution[1]; y += inc, outY++) { in captureRGB() local
502 for (unsigned int y = 0, outY = 0; y < mResolution[1]; y += inc, outY++) { in captureNV21() local
541 for (unsigned int y = 0, outY = 0; y < mResolution[1]; y += inc, outY++) { in captureDepth() local
569 for (size_t y = 0, i = 0; y < 4; y++) { in captureDepthCloud() local
/device/google/contexthub/firmware/os/algos/calibration/magnetometer/mag_sphere_fit_cal/
Dmag_sphere_fit.c75 void magCalSphereDataUpdate(struct MagCalSphere *mocs, float x, float y, in magCalSphereDataUpdate()
123 uint64_t sample_time_us, float x, float y, in magCalSphereUpdate()
/device/google/contexthub/firmware/os/algos/calibration/diversity_checker/
Ddiversity_checker.c75 float x, float y, float z) { in diversityCheckerFindNearestPoint()
111 float y, float z) { in diversityCheckerUpdate()
/device/google/contexthub/firmware/os/algos/calibration/magnetometer/mag_cal/
Dmag_cal.c141 float x, float y, float z) { in magCalUpdate()
228 void magCalGetBias(const struct MagCal *moc, float *x, float *y, float *z) { in magCalGetBias()
234 void magCalAddBias(struct MagCal *moc, float x, float y, float z) { in magCalAddBias()

123456