/device/asus/fugu/recovery/ |
D | fw_version_check.c | 167 int get_current_fw_rev(struct firmware_versions *v) in get_current_fw_rev() argument 176 v->scubootstrap.minor = fw_revision[1] << 8 | fw_revision[0]; in get_current_fw_rev() 177 v->scubootstrap.major = fw_revision[3] << 8 | fw_revision[2]; in get_current_fw_rev() 178 v->scu.minor = fw_revision[5] << 8 | fw_revision[4]; in get_current_fw_rev() 179 v->scu.major = fw_revision[7] << 8 | fw_revision[6]; in get_current_fw_rev() 180 v->ia32.minor = fw_revision[9] << 8 | fw_revision[8]; in get_current_fw_rev() 181 v->ia32.major = fw_revision[11] << 8 | fw_revision[10]; in get_current_fw_rev() 182 v->valhooks.minor = fw_revision[13] << 8 | fw_revision[12]; in get_current_fw_rev() 183 v->valhooks.major = fw_revision[15] << 8 | fw_revision[14]; in get_current_fw_rev() 184 v->ifwi.minor = fw_revision[17] << 8 | fw_revision[16]; in get_current_fw_rev() [all …]
|
D | recovery_updater.c | 42 static void dump_fw_versions(struct firmware_versions *v) in dump_fw_versions() argument 45 fprintf(stderr, " ifwi: %04X.%04X\n", v->ifwi.major, v->ifwi.minor); in dump_fw_versions() 47 fprintf(stderr, " scu: %04X.%04X\n", v->scu.major, v->scu.minor); in dump_fw_versions() 48 fprintf(stderr, " hooks/oem: %04X.%04X\n", v->valhooks.major, v->valhooks.minor); in dump_fw_versions() 49 fprintf(stderr, " ia32: %04X.%04X\n", v->ia32.major, v->ia32.minor); in dump_fw_versions() 50 fprintf(stderr, " chaabi: %04X.%04X\n", v->chaabi.major, v->chaabi.minor); in dump_fw_versions() 51 fprintf(stderr, " mIA: %04X.%04X\n", v->mia.major, v->mia.minor); in dump_fw_versions()
|
D | fw_version_check.h | 39 int get_current_fw_rev(struct firmware_versions *v); 44 int get_image_fw_rev(void *data, unsigned sz, struct firmware_versions *v);
|
/device/generic/goldfish/camera/ |
D | Converters.h | 153 R8G8B8ToYUV(uint8_t r, uint8_t g, uint8_t b, uint8_t* y, uint8_t* u, uint8_t* v) in R8G8B8ToYUV() argument 157 *v = RGB2V((int)r, (int)g, (int)b); in R8G8B8ToYUV() 162 RGB565ToYUV(uint16_t rgb, uint8_t* y, uint8_t* u, uint8_t* v) in RGB565ToYUV() argument 164 R8G8B8ToYUV(R16_32(rgb), G16_32(rgb), B16_32(rgb), y, u, v); in RGB565ToYUV() 169 RGB32ToYUV(uint32_t rgb, uint8_t* y, uint8_t* u, uint8_t* v) in RGB32ToYUV() argument 173 R8G8B8ToYUV(rgb_c.r, rgb_c.g, rgb_c.b, y, u, 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() argument [all …]
|
D | EmulatedCamera3.cpp | 252 const vendor_tag_query_ops_t *v, in get_camera_vendor_section_name() argument 254 EmulatedCamera3* ec = static_cast<const TagOps*>(v)->parent; in get_camera_vendor_section_name() 259 const vendor_tag_query_ops_t *v, in get_camera_vendor_tag_name() argument 261 EmulatedCamera3* ec = static_cast<const TagOps*>(v)->parent; in get_camera_vendor_tag_name() 266 const vendor_tag_query_ops_t *v, in get_camera_vendor_tag_type() argument 268 EmulatedCamera3* ec = static_cast<const TagOps*>(v)->parent; in get_camera_vendor_tag_type()
|
D | EmulatedCamera2.cpp | 343 const vendor_tag_query_ops_t *v, in get_camera_vendor_section_name() argument 345 EmulatedCamera2* ec = static_cast<const TagOps*>(v)->parent; in get_camera_vendor_section_name() 350 const vendor_tag_query_ops_t *v, in get_camera_vendor_tag_name() argument 352 EmulatedCamera2* ec = static_cast<const TagOps*>(v)->parent; in get_camera_vendor_tag_name() 357 const vendor_tag_query_ops_t *v, in get_camera_vendor_tag_type() argument 359 EmulatedCamera2* ec = static_cast<const TagOps*>(v)->parent; in get_camera_vendor_tag_type()
|
D | EmulatedCameraDevice.cpp | 146 uint8_t& v) const { in changeWhiteBalance() 149 int r = static_cast<float>(YUV2R(y, u, v)) / r_scale; in changeWhiteBalance() 150 int g = YUV2G(y, u, v); in changeWhiteBalance() 151 int b = static_cast<float>(YUV2B(y, u, v)) / b_scale; in changeWhiteBalance() 155 v = RGB2V(r, g, b); in changeWhiteBalance()
|
/device/google/accessory/demokit/app/src/com/google/android/DemoKit/ |
D | ColorLEDController.java | 33 int v = (int) (255 * value); in onPositionChange() local 34 mTarget.setText(String.valueOf(v)); in onPositionChange() 37 mCommandTarget, (byte) v); in onPositionChange() 51 public void onClick(View v) { in onClick() argument
|
D | ServoController.java | 34 byte v = (byte) (value * 255); in onPositionChange() 36 mCommandTarget, v); in onPositionChange()
|
D | DemoKitPhone.java | 64 public void onClick(View v) { in onClick() argument 65 int vId = v.getId(); in onClick()
|
/device/generic/goldfish/opengl/system/GLESv2_enc/ |
D | GL2Encoder.h | 193 static void s_glUniform1fv(void *self , GLint location, GLsizei count, const GLfloat* v); 195 static void s_glUniform1iv(void *self , GLint location, GLsizei count, const GLint* v); 197 static void s_glUniform2fv(void *self , GLint location, GLsizei count, const GLfloat* v); 199 static void s_glUniform2iv(void *self , GLint location, GLsizei count, const GLint* v); 201 static void s_glUniform3fv(void *self , GLint location, GLsizei count, const GLfloat* v); 203 static void s_glUniform3iv(void *self , GLint location, GLsizei count, const GLint* v); 205 static void s_glUniform4fv(void *self , GLint location, GLsizei count, const GLfloat* v); 207 static void s_glUniform4iv(void *self , GLint location, GLsizei count, const GLint* v);
|
D | gl2_entry.cpp | 121 void glUniform1fv(GLint location, GLsizei count, const GLfloat* v); 123 void glUniform1iv(GLint location, GLsizei count, const GLint* v); 125 void glUniform2fv(GLint location, GLsizei count, const GLfloat* v); 127 void glUniform2iv(GLint location, GLsizei count, const GLint* v); 129 void glUniform3fv(GLint location, GLsizei count, const GLfloat* v); 131 void glUniform3iv(GLint location, GLsizei count, const GLint* v); 133 void glUniform4fv(GLint location, GLsizei count, const GLfloat* v); 135 void glUniform4iv(GLint location, GLsizei count, const GLint* v); 906 void glUniform1fv(GLint location, GLsizei count, const GLfloat* v) in glUniform1fv() argument 909 ctx->glUniform1fv(ctx, location, count, v); in glUniform1fv() [all …]
|
D | GL2Encoder.cpp | 910 void GL2Encoder::s_glUniform1fv(void *self , GLint location, GLsizei count, const GLfloat* v) in s_glUniform1fv() argument 914 ctx->m_glUniform1fv_enc(self, hostLoc, count, v); in s_glUniform1fv() 936 void GL2Encoder::s_glUniform1iv(void *self , GLint location, GLsizei count, const GLint* v) in s_glUniform1iv() argument 940 ctx->m_glUniform1iv_enc(self, hostLoc, count, v); in s_glUniform1iv() 950 void GL2Encoder::s_glUniform2fv(void *self , GLint location, GLsizei count, const GLfloat* v) in s_glUniform2fv() argument 954 ctx->m_glUniform2fv_enc(self, hostLoc, count, v); in s_glUniform2fv() 964 void GL2Encoder::s_glUniform2iv(void *self , GLint location, GLsizei count, const GLint* v) in s_glUniform2iv() argument 968 ctx->m_glUniform2iv_enc(self, hostLoc, count, v); in s_glUniform2iv() 978 void GL2Encoder::s_glUniform3fv(void *self , GLint location, GLsizei count, const GLfloat* v) in s_glUniform3fv() argument 982 ctx->m_glUniform3fv_enc(self, hostLoc, count, v); in s_glUniform3fv() [all …]
|
/device/lge/hammerhead/camera/hdr/include/ |
D | morpho_motion_data.h | 19 int v[6]; /**< �����f�[�^ */ member
|
D | morpho_image_data.h | 20 void * v; /**< V�摜�̐擪�|�C���^ */ member
|
D | morpho_image_data_ex.h | 22 int v; member
|
/device/asus/flo/camera/hdr/include/ |
D | morpho_motion_data.h | 19 int v[6]; /**< �����f�[�^ */ member
|
D | morpho_image_data.h | 20 void * v; /**< V�摜�̐擪�|�C���^ */ member
|
D | morpho_image_data_ex.h | 22 int v; member
|
/device/lge/mako/camera/hdr/include/ |
D | morpho_motion_data.h | 19 int v[6]; /**< �����f�[�^ */ member
|
D | morpho_image_data.h | 20 void * v; /**< V�摜�̐擪�|�C���^ */ member
|
D | morpho_image_data_ex.h | 22 int v; member
|
/device/generic/goldfish/opengl/shared/OpenglCodecCommon/ |
D | GLSharedGroup.cpp | 22 static void clearObjectMap(android::DefaultKeyedVector<GLuint, T>& v) { in clearObjectMap() argument 23 for (size_t i = 0; i < v.size(); i++) in clearObjectMap() 24 delete v.valueAt(i); in clearObjectMap() 25 v.clear(); in clearObjectMap()
|
/device/htc/flounder/VolantisKeyboard/res/raw/ |
D | keyboard_layout_volantis_japanese.kcm | 272 label: 'v' 273 base: 'v'
|
D | keyboard_layout_volantis_english_us.kcm | 270 label: 'v' 271 base: 'v'
|