HomeSort by relevance Sort by last modified time
    Searched refs:attrib (Results 226 - 250 of 442) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /ndk/
ndk-gdb.py 475 if 'package' in root.attrib:
476 return root.attrib['package']
487 for k in application.attrib.keys():
489 return application.attrib[k] == 'true'
512 if True in [str(child.attrib[k]).endswith('MAIN') for k in child.attrib.keys()]:
515 if True in [str(child.attrib[k]).endswith('LAUNCHER') for k in child.attrib.keys()]:
518 names = [str(activity.attrib[k]) for k in activity.attrib.keys() if str(k).endswith('name')
    [all...]
  /hardware/intel/common/libva/test/encode/
h264encode.c 79 static VAConfigAttrib attrib[VAConfigAttribTypeMax]; variable
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_pt_fetch_shade_emit.c 128 unsigned emit_sz = draw_translate_vinfo_size(vinfo->attrib[i].emit);
137 fse->key.element[i].out.format = vinfo->attrib[i].emit;
138 fse->key.element[i].out.vs_output = vinfo->attrib[i].src_index;
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
arrayobj.c 294 GLint attrib = ffsll(enabled) - 1; local
295 enabled ^= BITFIELD64_BIT(attrib);
297 client_array = &arrayObj->VertexAttrib[attrib];
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pt_fetch_shade_emit.c 128 unsigned emit_sz = draw_translate_vinfo_size(vinfo->attrib[i].emit);
137 fse->key.element[i].out.format = vinfo->attrib[i].emit;
138 fse->key.element[i].out.vs_output = vinfo->attrib[i].src_index;
  /external/mesa3d/src/mesa/main/
arrayobj.c 294 GLint attrib = ffsll(enabled) - 1; local
295 enabled ^= BITFIELD64_BIT(attrib);
297 client_array = &arrayObj->VertexAttrib[attrib];
  /external/qemu/distrib/sdl-1.2.15/src/video/dc/
SDL_dcvideo.c 59 static int DC_GL_GetAttribute(_THIS, SDL_GLattr attrib, int* value);
395 static int DC_GL_GetAttribute(_THIS, SDL_GLattr attrib, int* value)
400 switch(attrib) {
  /device/generic/goldfish/opengl/system/egl/
eglDisplay.cpp 420 EGLBoolean eglDisplay::getConfigAttrib(EGLConfig config, EGLint attrib, EGLint * value)
424 EGLBoolean ret = getAttribValue(config, m_attribs.valueFor(attrib), value);
453 EGLBoolean eglDisplay::setConfigAttrib(EGLConfig config, EGLint attrib, EGLint value)
457 EGLBoolean ret = setAttribValue(config, m_attribs.valueFor(attrib), value);
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_parameter.h 162 const char *name, GLint size, GLenum datatype, GLint attrib);
  /external/mesa3d/src/mesa/program/
prog_parameter.h 162 const char *name, GLint size, GLenum datatype, GLint attrib);
  /external/openssl/crypto/pkcs12/
p12_asn.c 111 ASN1_SET_OF_OPT(PKCS12_SAFEBAG, attrib, X509_ATTRIBUTE)
  /external/qemu/distrib/sdl-1.2.15/src/video/quartz/
SDL_QuartzGL.m 227 int QZ_GL_GetAttribute (_THIS, SDL_GLattr attrib, int* value) {
233 switch (attrib) {
  /external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
SDL_wingl.c 423 int WIN_GL_GetAttribute(_THIS, SDL_GLattr attrib, int* value)
427 if (attrib == SDL_GL_SWAP_CONTROL) {
438 switch(attrib) {
502 switch ( attrib ) {
SDL_wingl_c.h 69 extern int WIN_GL_GetAttribute(_THIS, SDL_GLattr attrib, int* value);
  /hardware/intel/common/libva/test/videoprocess/
videoprocess.cpp 624 color_balance_param[count].attrib = VAProcColorBalanceHue;
628 color_balance_param[count].attrib = VAProcColorBalanceSaturation;
632 color_balance_param[count].attrib = VAProcColorBalanceBrightness;
636 color_balance_param[count].attrib = VAProcColorBalanceContrast;
843 VAConfigAttrib attrib; local
844 attrib.type = VAConfigAttribRTFormat;
848 &attrib,
851 if ((attrib.value != g_out_format)) {
868 &attrib,
    [all...]
  /external/deqp/modules/gles3/functional/
es3fTransformFeedbackTests.cpp 513 const Attribute* attrib = &(*std::find_if(attributes.begin(), attributes.end(), AttributeNameEquals(attribName))); local
515 output.inputs.push_back(attrib);
523 static void genAttributeData (const Attribute& attrib, deUint8* basePtr, int stride, int numElements, de::Random& rnd)
526 bool isFloat = glu::isDataTypeFloatOrVec(attrib.type.getBasicType());
527 bool isInt = glu::isDataTypeIntOrIVec(attrib.type.getBasicType());
528 bool isUint = glu::isDataTypeIntOrIVec(attrib.type.getBasicType());
529 glu::Precision precision = attrib.type.getPrecision();
530 int numComps = glu::getDataTypeScalarSize(attrib.type.getBasicType());
536 int offset = attrib.offset+elemNdx*stride+compNdx*elementSize;
603 for (vector<Attribute>::const_iterator attrib = attributes.begin(); attrib != attributes.end(); attrib++
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
program_manager.h 195 void SetAttribLocationBinding(const std::string& attrib, GLint location) {
196 bind_attrib_location_map_[attrib] = location;
306 // Attrib by index.
309 // Attrib by location to index.
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglmode.c 179 * Return value of given mode attribute, or -1 if bad attrib.
182 getModeAttrib(const _EGLMode *m, EGLint attrib)
184 switch (attrib) {
207 EGLint Attrib;
235 for (i = 0; SortInfo[i].Attrib; i++) {
236 const EGLint aVal = getModeAttrib(aMode, SortInfo[i].Attrib);
237 const EGLint bVal = getModeAttrib(bMode, SortInfo[i].Attrib);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_render.c 352 /* Stride to the same attrib in the next vertex in the vertex buffer,
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
i915_context.h 301 intel->vertex_attrs[intel->vertex_attr_count].attrib = (ATTR); \
310 intel->vertex_attrs[intel->vertex_attr_count].attrib = 0; \
  /external/lzma/CPP/7zip/Archive/7z/
7zItem.h 145 UInt32 Attrib;
161 void SetAttrib(UInt32 attrib)
164 Attrib = attrib;
  /external/mesa3d/src/egl/main/
eglmode.c 179 * Return value of given mode attribute, or -1 if bad attrib.
182 getModeAttrib(const _EGLMode *m, EGLint attrib)
184 switch (attrib) {
207 EGLint Attrib;
235 for (i = 0; SortInfo[i].Attrib; i++) {
236 const EGLint aVal = getModeAttrib(aMode, SortInfo[i].Attrib);
237 const EGLint bVal = getModeAttrib(bMode, SortInfo[i].Attrib);
  /external/mesa3d/src/gallium/drivers/r300/
r300_render.c 352 /* Stride to the same attrib in the next vertex in the vertex buffer,
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_context.h 301 intel->vertex_attrs[intel->vertex_attr_count].attrib = (ATTR); \
310 intel->vertex_attrs[intel->vertex_attr_count].attrib = 0; \
  /external/qemu/distrib/sdl-1.2.15/src/video/photon/
SDL_ph_gl.c 48 int ph_GL_GetAttribute(_THIS, SDL_GLattr attrib, int* value)
50 switch (attrib)

Completed in 1650 milliseconds

1 2 3 4 5 6 7 8 91011>>