Searched defs:type (Results 51 - 75 of 371) sorted by relevance

1234567891011>>

/device/google/marlin/camera/QCamera2/HAL/
H A DQCameraChannel.h99 int32_t stopAdvancedCapture(mm_camera_advanced_capture_t type);
100 int32_t startAdvancedCapture(mm_camera_advanced_capture_t type,
159 cam_mapping_buf_type type; member in struct:qcamera::QCameraReprocessChannel::__anon471
/device/google/marlin/camera/QCamera2/stack/mm-jpeg-interface/src/
H A Dmm_jpeg_exif.c53 * @type : data type
54 * @count : number of data in uint of its type
57 * Retrun : int32_t type of status
66 exif_tag_type_t type, uint32_t count, void *data)
77 p_info_data[numOfEntries].tag_entry.type = type;
80 switch (type) {
207 * Retrun : int32_t type of status
217 switch (p_exif_data->tag_entry.type) {
65 addExifEntry(QOMX_EXIF_INFO *p_exif_info, exif_tag_id_t tagid, exif_tag_type_t type, uint32_t count, void *data) argument
[all...]
/device/huawei/angler/camera/QCamera2/HAL3/
H A DQCamera3StreamMem.cpp105 * RETURN : int32_t type of status
165 * RETURN : int32_t type of status
187 * RETURN : int32_t type of status
211 * RETURN : int32_t type of status
277 * @type : cam_stream_type_t
279 * RETURN : int32_t type of status
284 cam_stream_type_t type)
287 return mGrallocMem.registerBuffer(buffer, type);
299 * RETURN : int32_t type of status
368 * RETURN : int32_t type o
283 registerBuffer(buffer_handle_t *buffer, cam_stream_type_t type) argument
[all...]
/device/huawei/angler/camera/QCamera2/stack/mm-jpeg-interface/src/
H A Dmm_jpeg_exif.c50 * @type : data type
51 * @count : number of data in uint of its type
54 * Retrun : int32_t type of status
63 exif_tag_type_t type, uint32_t count, void *data)
74 p_info_data[numOfEntries].tag_entry.type = type;
77 switch (type) {
204 * Retrun : int32_t type of status
214 switch (p_exif_data->tag_entry.type) {
62 addExifEntry(QOMX_EXIF_INFO *p_exif_info, exif_tag_id_t tagid, exif_tag_type_t type, uint32_t count, void *data) argument
[all...]
/device/lge/bullhead/camera/QCamera2/HAL3/
H A DQCamera3StreamMem.cpp105 * RETURN : int32_t type of status
165 * RETURN : int32_t type of status
187 * RETURN : int32_t type of status
211 * RETURN : int32_t type of status
277 * @type : cam_stream_type_t
279 * RETURN : int32_t type of status
284 cam_stream_type_t type)
287 return mGrallocMem.registerBuffer(buffer, type);
299 * RETURN : int32_t type of status
368 * RETURN : int32_t type o
283 registerBuffer(buffer_handle_t *buffer, cam_stream_type_t type) argument
[all...]
/device/lge/bullhead/camera/QCamera2/stack/mm-jpeg-interface/src/
H A Dmm_jpeg_exif.c50 * @type : data type
51 * @count : number of data in uint of its type
54 * Retrun : int32_t type of status
63 exif_tag_type_t type, uint32_t count, void *data)
74 p_info_data[numOfEntries].tag_entry.type = type;
77 switch (type) {
204 * Retrun : int32_t type of status
214 switch (p_exif_data->tag_entry.type) {
62 addExifEntry(QOMX_EXIF_INFO *p_exif_info, exif_tag_id_t tagid, exif_tag_type_t type, uint32_t count, void *data) argument
[all...]
/device/linaro/bootloader/arm-trusted-firmware/drivers/arm/gic/
H A Darm_gic.c358 * The interrupt controller knows which pin/line it uses to signal a type of
362 * for a type of interrupt and security state, which line should be used in the
366 uint32_t arm_gic_interrupt_type_to_line(uint32_t type, argument
369 assert(type == INTR_TYPE_S_EL1 ||
370 type == INTR_TYPE_EL3 ||
371 type == INTR_TYPE_NS);
381 return gicv2_interrupt_type_to_line(g_gicc_base, type);
389 * This function returns the type of the highest priority pending interrupt at
456 * This function returns the type of the interrupt id depending upon the group
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
H A Dstructmember.h19 #define offsetof(type, member) ( (int) & ((type*)0) -> member )
22 /* An array of memberlist structures defines the name, type and offset
31 int type; member in struct:memberlist
39 int type; member in struct:PyMemberDef
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Drangeobject.c65 range_new(PyTypeObject *type, PyObject *args, PyObject *kw) argument
188 "xrange", /* Name of this type */
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/
H A Dparser.c108 shift(register stack *s, int type, char *str, int newstate, int lineno, int col_offset) argument
112 err = PyNode_AddChild(s->s_top->s_parent, type, str, lineno, col_offset);
120 push(register stack *s, int type, dfa *d, int newstate, int lineno, int col_offset) argument
126 err = PyNode_AddChild(n, type, (char *)NULL, lineno, col_offset);
137 classify(parser_state *ps, int type, char *str) argument
142 if (type == NAME) {
166 if (l->lb_type == type && l->lb_str == NULL) {
220 PyParser_AddToken(register parser_state *ps, register int type, char *str, argument
226 D(printf("Token %s/'%s' ... ", _PyParser_TokenNames[type], str));
229 ilabel = classify(ps, type, st
[all...]
H A Dparsetok.c154 int type; local
159 type = PyTokenizer_Get(tok, &a, &b);
160 if (type == ERRORTOKEN) {
164 if (type == ENDMARKER && started) {
165 type = NEWLINE; /* Add an extra newline */
198 PyParser_AddToken(ps, (int)type, str, tok->lineno, col_offset,
202 err_ret->token = type;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
H A Dstructmember.h19 #define offsetof(type, member) ( (int) & ((type*)0) -> member )
22 /* An array of memberlist structures defines the name, type and offset
31 int type; member in struct:memberlist
39 int type; member in struct:PyMemberDef
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Drangeobject.c41 range_new(PyTypeObject *type, PyObject *args, PyObject *kw) argument
163 "xrange", /* Name of this type */
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
H A Dparser.c108 shift(register stack *s, int type, char *str, int newstate, int lineno, int col_offset) argument
112 err = PyNode_AddChild(s->s_top->s_parent, type, str, lineno, col_offset);
120 push(register stack *s, int type, dfa *d, int newstate, int lineno, int col_offset) argument
126 err = PyNode_AddChild(n, type, (char *)NULL, lineno, col_offset);
137 classify(parser_state *ps, int type, char *str) argument
142 if (type == NAME) {
166 if (l->lb_type == type && l->lb_str == NULL) {
220 PyParser_AddToken(register parser_state *ps, register int type, char *str, argument
226 D(printf("Token %s/'%s' ... ", _PyParser_TokenNames[type], str));
229 ilabel = classify(ps, type, st
[all...]
H A Dparsetok.c165 int type; local
170 type = PyTokenizer_Get(tok, &a, &b);
171 if (type == ERRORTOKEN) {
175 if (type == ENDMARKER && started) {
176 type = NEWLINE; /* Add an extra newline */
211 PyParser_AddToken(ps, (int)type, str, tok->lineno, col_offset,
215 err_ret->token = type;
/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
H A Dgethostnamadr.c56 enum service_type type; member in struct:__anon9390
77 for(i = 0; service_names[i].type != SERVICE_NONE; i++) {
79 return service_names[i].type;
137 gethostbyname2(const char *name, int type) argument
150 hp = _gethostbyhtname(name, type);
153 hp = _gethostbydnsname(name, type);
156 hp = _gethostbynisname(name, type);
165 gethostbyaddr(const char *addr, socklen_t len, int type) argument
178 hp = _gethostbyhtaddr(addr, len, type);
181 hp = _gethostbydnsaddr(addr, len, type);
198 gethostbyaddr_r(const char *addr, int len, int type, struct hostent *result, struct hostent_data *buffer) argument
[all...]
H A Dgetnetnamadr.c52 enum service_type type; member in struct:__anon9393
73 for(i = 0; service_names[i].type != SERVICE_NONE; i++) {
75 return service_names[i].type;
H A Dres_query.c122 int type, /* type of query */
139 printf(";; res_query(%s, %d, %d)\n", name, class, type);
142 n = res_mkquery(QUERY, name, class, type, NULL, 0, NULL,
200 int type, /* type of query */
226 return (res_query(cp, class, type, answer, anslen));
234 ret = res_querydomain(name, NULL, class, type, answer, anslen);
255 ret = res_querydomain(name, *domain, class, type,
266 * a wildcard entry of another type coul
119 res_query( const char *name, int class, int type, u_char *answer, int anslen ) argument
197 res_search( const char *name, int class, int type, u_char *answer, int anslen ) argument
337 res_querydomain( const char *name, const char *domain, int class, int type, u_char *answer, int anslen ) argument
[all...]
/device/asus/fugu/kernel-headers/linux/
H A Dkct.h57 enum ct_attchmt_type type; member in struct:ct_attchmt
66 enum ct_ev_type type; member in struct:ct_event
/device/asus/fugu/original-kernel-headers/linux/
H A Dkct.h48 enum ct_attchmt_type type; member in struct:ct_attchmt
56 enum ct_ev_type type; member in struct:ct_event
/device/generic/goldfish/camera/
H A DEmulatedCamera3.cpp141 int type) {
220 const camera3_device_t *d, int type) {
222 return ec->constructDefaultRequestSettings(type);
140 constructDefaultRequestSettings( int type) argument
219 construct_default_request_settings( const camera3_device_t *d, int type) argument
/device/generic/goldfish-opengl/shared/OpenglCodecCommon/
H A DGLSharedGroup.h71 GLenum type; member in struct:ProgramData::_IndexInfo
94 void setIndexInfo(GLuint index, GLint base, GLint size, GLenum type);
172 void setProgramIndexInfo(GLuint program, GLuint index, GLint base, GLint size, GLenum type, const char* name);
195 void setShaderProgramIndexInfo(GLuint shaderProgram, GLuint index, GLint base, GLint size, GLenum type, const char* name);
H A DglUtils.cpp23 size_t glSizeof(GLenum type) argument
26 switch(type) {
111 ALOGE("**** ERROR unknown type 0x%x (%s,%d)\n", type, __FUNCTION__,__LINE__);
402 int size, GLenum type, unsigned int stride,
405 unsigned int vsize = size * glSizeof(type);
406 switch (type) {
429 int size, GLenum type, unsigned int stride,
434 unsigned int vsize = size * glSizeof(type);
447 int glUtilsPixelBitSize(GLenum format, GLenum type) argument
401 glUtilsPackPointerData(unsigned char *dst, unsigned char *src, int size, GLenum type, unsigned int stride, unsigned int datalen) argument
428 glUtilsWritePackPointerData(void* _stream, unsigned char *src, int size, GLenum type, unsigned int stride, unsigned int datalen) argument
[all...]
/device/generic/goldfish-opengl/system/GLESv1_enc/
H A DGLEncoder.cpp266 void GLEncoder::s_glVertexPointer(void *self, int size, GLenum type, GLsizei stride, const void *data) argument
270 ctx->m_state->setVertexAttribState(GLClientState::VERTEX_LOCATION, size, type, false, stride, data);
273 void GLEncoder::s_glNormalPointer(void *self, GLenum type, GLsizei stride, const void *data) argument
277 ctx->m_state->setVertexAttribState(GLClientState::NORMAL_LOCATION, 3, type, false, stride, data);
280 void GLEncoder::s_glColorPointer(void *self, int size, GLenum type, GLsizei stride, const void *data) argument
284 ctx->m_state->setVertexAttribState(GLClientState::COLOR_LOCATION, size, type, false, stride, data);
287 void GLEncoder::s_glPointSizePointerOES(void *self, GLenum type, GLsizei stride, const void *data) argument
291 ctx->m_state->setVertexAttribState(GLClientState::POINTSIZE_LOCATION, 1, type, false, stride, data);
301 void GLEncoder::s_glTexCoordPointer(void *self, int size, GLenum type, GLsizei stride, const void *data) argument
306 ctx->m_state->setVertexAttribState(loc, size, type, fals
309 s_glMatrixIndexPointerOES(void *self, int size, GLenum type, GLsizei stride, const void * data) argument
317 s_glWeightPointerOES(void * self, int size, GLenum type, GLsizei stride, const void * data) argument
[all...]
/device/google/contexthub/firmware/os/cpu/cortexm4/
H A DappSupport.c27 //reloc types for this cpu type
35 static bool handleRelNumber(uint32_t *ofstP, uint32_t type, uint32_t flashAddr, uint32_t ramAddr, uint32_t *mem, uint32_t value) argument
39 switch (type) {
64 uint32_t type = 0; local
72 if (!handleRelNumber(&ofst, type, flashStart, ramStart, mem, rel))
82 if (!handleRelNumber(&ofst, type, flashStart, ramStart, mem, rel))
92 if (!handleRelNumber(&ofst, type, flashStart, ramStart, mem, rel + MAX_16_BIT_NUM))
101 if (!handleRelNumber(&ofst, type, flashStart, ramStart, mem, rel + MAX_8_BIT_NUM))
111 if (!handleRelNumber(&ofst, type, flashStart, ramStart, mem, 0))
120 type
[all...]

Completed in 464 milliseconds

1234567891011>>