HomeSort by relevance Sort by last modified time
    Searched refs:attrib (Results 1 - 25 of 462) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/deqp/framework/qphelper/
qpXmlWriter.h 54 qpXmlAttribute attrib; local
55 attrib.name = name;
56 attrib.type = QP_XML_ATTRIBUTE_STRING;
57 attrib.stringValue = value;
58 attrib.intValue = -678;
59 attrib.boolValue = (deBool)0xFFFFFFFFu;
60 return attrib;
65 qpXmlAttribute attrib; local
66 attrib.name = name;
67 attrib.type = QP_XML_ATTRIBUTE_INT
76 qpXmlAttribute attrib; local
    [all...]
  /external/mesa3d/src/mesa/swrast_setup/
ss_tritmp.h 53 GLfloat ex = v[0]->attrib[VARYING_SLOT_POS][0] - v[2]->attrib[VARYING_SLOT_POS][0];
54 GLfloat ey = v[0]->attrib[VARYING_SLOT_POS][1] - v[2]->attrib[VARYING_SLOT_POS][1];
55 GLfloat fx = v[1]->attrib[VARYING_SLOT_POS][0] - v[2]->attrib[VARYING_SLOT_POS][0];
56 GLfloat fy = v[1]->attrib[VARYING_SLOT_POS][1] - v[2]->attrib[VARYING_SLOT_POS][1];
77 COPY_4V(saved_col0[0], v[0]->attrib[VARYING_SLOT_COL0]);
78 COPY_4V(saved_col0[1], v[1]->attrib[VARYING_SLOT_COL0])
    [all...]
ss_context.c 98 map[e].attrib = (ATTR); \
128 EMIT_ATTR( _TNL_ATTRIB_POS, EMIT_4F_VIEWPORT, attrib[VARYING_SLOT_POS] );
134 EMIT_ATTR( _TNL_ATTRIB_COLOR0, EMIT_4F, attrib[VARYING_SLOT_COL0]);
138 EMIT_ATTR( _TNL_ATTRIB_COLOR1, EMIT_4F, attrib[VARYING_SLOT_COL1]);
143 EMIT_ATTR( _TNL_ATTRIB_FOG, emit, attrib[VARYING_SLOT_FOGC]);
151 attrib[VARYING_SLOT_TEX0 + i] ); local
161 attrib[VARYING_SLOT_VAR0 + i] ); local
263 * Populate a swrast SWvertex from an attrib-style vertex.
275 dest->attrib[VARYING_SLOT_POS][0] = m[0] * tmp[0] + m[12];
276 dest->attrib[VARYING_SLOT_POS][1] = m[5] * tmp[1] + m[13]
    [all...]
  /art/compiler/debug/dwarf/
debug_info_entry_writer.h 85 void WriteAddr(Attribute attrib, uint64_t value) {
86 debug_abbrev_->AddAbbrevAttribute(attrib, DW_FORM_addr);
95 void WriteBlock(Attribute attrib, const uint8_t* ptr, size_t num_bytes) {
96 debug_abbrev_->AddAbbrevAttribute(attrib, DW_FORM_block);
101 void WriteExprLoc(Attribute attrib, const Expression& expr) {
102 debug_abbrev_->AddAbbrevAttribute(attrib, DW_FORM_exprloc);
107 void WriteData1(Attribute attrib, uint8_t value) {
108 debug_abbrev_->AddAbbrevAttribute(attrib, DW_FORM_data1);
112 void WriteData2(Attribute attrib, uint16_t value) {
113 debug_abbrev_->AddAbbrevAttribute(attrib, DW_FORM_data2)
    [all...]
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttDeprecated.java 17 package com.android.dx.cf.attrib;
AttSynthetic.java 17 package com.android.dx.cf.attrib;
AttLocalVariableTable.java 17 package com.android.dx.cf.attrib;
AttLocalVariableTypeTable.java 17 package com.android.dx.cf.attrib;
  /external/mesa3d/src/gallium/drivers/i915/
i915_prim_emit.c 79 const uint j = vinfo->attrib[i].src_index;
80 const float *attrib = vertex->data[j]; local
81 switch (vinfo->attrib[i].emit) {
83 OUT_BATCH( fui(attrib[0]) );
87 OUT_BATCH( fui(attrib[0]) );
88 OUT_BATCH( fui(attrib[1]) );
92 OUT_BATCH( fui(attrib[0]) );
93 OUT_BATCH( fui(attrib[1]) );
94 OUT_BATCH( fui(attrib[2]) );
98 OUT_BATCH( fui(attrib[0]) )
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_maos_arrays.c 86 GLubyte attrib = vimap_rev[i]; local
87 if (attrib != 255) {
90 emitsize = (VB->AttribPtr[attrib]->size);
104 assert(attrib == VERT_ATTRIB_WEIGHT);
105 emitsize = (VB->AttribPtr[attrib]->size);
109 assert(attrib == VERT_ATTRIB_NORMAL);
115 assert(attrib == VERT_ATTRIB_FOG);
120 (char *)VB->AttribPtr[attrib]->data,
122 VB->AttribPtr[attrib]->stride,
127 (char *)VB->AttribPtr[attrib]->data
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/
AttributeList.java 70 * @param attrib {@code non-null;} attribute to start looking after
71 * @return {@code null-ok;} next attribute after {@code attrib} with the
72 * same name as {@code attrib}
74 public Attribute findNext(Attribute attrib);
  /dalvik/dx/src/com/android/dx/cf/iface/
AttributeList.java 70 * @param attrib {@code non-null;} attribute to start looking after
71 * @return {@code null-ok;} next attribute after {@code attrib} with the
72 * same name as {@code attrib}
74 public Attribute findNext(Attribute attrib);
  /external/jline/src/src/main/java/jline/
ANSIBuffer.java 59 public ANSIBuffer attrib(final String str, final int code) { method in class:ANSIBuffer
60 ansiBuffer.append(ANSICodes.attrib(code)).append(str)
61 .append(ANSICodes.attrib(ANSICodes.OFF));
68 return attrib(str, ANSICodes.FG_RED);
72 return attrib(str, ANSICodes.FG_BLUE);
76 return attrib(str, ANSICodes.FG_GREEN);
80 return attrib(str, ANSICodes.FG_BLACK);
84 return attrib(str, ANSICodes.FG_YELLOW);
88 return attrib(str, ANSICodes.FG_MAGENTA);
92 return attrib(str, ANSICodes.FG_CYAN)
279 public static String attrib(final int attr) { method in class:ANSIBuffer.ANSICodes
    [all...]
  /external/skia/src/gpu/ccpr/
GrCCPathProcessor.h 68 const Attribute& attrib = this->getAttrib((int)attribID); local
69 SkASSERT(Attribute::InputRate::kPerInstance == attrib.fInputRate);
70 return attrib;
74 const Attribute& attrib = this->getAttrib(kNumInstanceAttribs); local
75 SkASSERT(Attribute::InputRate::kPerVertex == attrib.fInputRate);
76 return attrib;
  /external/skqp/src/gpu/ccpr/
GrCCPathProcessor.h 68 const Attribute& attrib = this->getAttrib((int)attribID); local
69 SkASSERT(Attribute::InputRate::kPerInstance == attrib.fInputRate);
70 return attrib;
74 const Attribute& attrib = this->getAttrib(kNumInstanceAttribs); local
75 SkASSERT(Attribute::InputRate::kPerVertex == attrib.fInputRate);
76 return attrib;
  /external/deqp/framework/egl/
egluStrUtil.cpp 155 int attrib = fmt.attribs[pos]; local
160 if (attrib == EGL_NONE)
167 const char* attribName = getConfigAttribName(attrib);
172 str << attribName << ", " << getConfigAttribValueStr(attrib, fmt.attribs[pos+1]);
178 str << tcu::toHex(attrib) << ", ???";
195 int attrib = fmt.attribs[pos]; local
200 if (attrib == EGL_NONE)
207 const char* attribName = getSurfaceAttribName(attrib);
212 str << attribName << ", " << getSurfaceAttribValueStr(attrib, fmt.attribs[pos+1]);
218 str << tcu::toHex(attrib) << ", ???"
235 int attrib = fmt.attribs[pos]; local
    [all...]
  /external/lzma/CPP/7zip/UI/FileManager/
SysIconUtils.cpp 42 typedef int (WINAPI * SHGetFileInfoWP)(LPCWSTR pszPath, DWORD attrib, SHFILEINFOW *psfi, UINT cbFileInfo, UINT uFlags);
55 static DWORD_PTR MySHGetFileInfoW(LPCWSTR pszPath, DWORD attrib, SHFILEINFOW *psfi, UINT cbFileInfo, UINT uFlags)
64 (pszPath, attrib, psfi, cbFileInfo, uFlags);
67 DWORD_PTR GetRealIconIndex(CFSTR path, DWORD attrib, int &iconIndex)
73 DWORD_PTR res = ::SHGetFileInfo(fs2fas(path), FILE_ATTRIBUTE_NORMAL | attrib, &shellInfo,
82 DWORD_PTR res = ::MySHGetFileInfoW(fs2us(path), FILE_ATTRIBUTE_NORMAL | attrib, &shellInfo,
90 DWORD_PTR GetRealIconIndex(const UString &fileName, DWORD attrib, int &iconIndex, UString *typeName)
97 DWORD_PTR res = ::SHGetFileInfoA(GetSystemString(fileName), FILE_ATTRIBUTE_NORMAL | attrib, &shellInfo,
109 DWORD_PTR res = ::MySHGetFileInfoW(fileName, FILE_ATTRIBUTE_NORMAL | attrib, &shellInfo,
119 static int FindInSorted_Attrib(const CRecordVector<CAttribIconPair> &vect, DWORD attrib, int &insertPos)
    [all...]
  /hardware/qcom/data/ipacfg-mgr/msm8998/ipacm/src/
IPACM_Xml.cpp 586 config->extd_firewall_entries[config->num_extd_firewall_entries - 1].attrib.attrib_mask |= IPA_FLT_SRC_ADDR;
599 config->extd_firewall_entries[config->num_extd_firewall_entries - 1].attrib.u.v4.src_addr
613 config->extd_firewall_entries[config->num_extd_firewall_entries - 1].attrib.u.v4.src_addr_mask
620 config->extd_firewall_entries[config->num_extd_firewall_entries - 1].attrib.attrib_mask |= IPA_FLT_DST_ADDR;
633 config->extd_firewall_entries[config->num_extd_firewall_entries - 1].attrib.u.v4.dst_addr
647 config->extd_firewall_entries[config->num_extd_firewall_entries - 1].attrib.u.v4.dst_addr_mask
654 config->extd_firewall_entries[config->num_extd_firewall_entries - 1].attrib.attrib_mask |= IPA_FLT_TOS;
666 config->extd_firewall_entries[config->num_extd_firewall_entries - 1].attrib.u.v4.tos
669 config->extd_firewall_entries[config->num_extd_firewall_entries - 1].attrib.u.v4.tos);
680 config->extd_firewall_entries[config->num_extd_firewall_entries - 1].attrib.u.v4.to
    [all...]
  /external/lzma/CPP/Windows/
FileFind.h 15 inline bool IsReadOnly(DWORD attrib) { return (attrib & FILE_ATTRIBUTE_READONLY) != 0; }
16 inline bool IsHidden(DWORD attrib) { return (attrib & FILE_ATTRIBUTE_HIDDEN) != 0; }
17 inline bool IsSystem(DWORD attrib) { return (attrib & FILE_ATTRIBUTE_SYSTEM) != 0; }
18 inline bool IsDir(DWORD attrib) { return (attrib & FILE_ATTRIBUTE_DIRECTORY) != 0; }
19 inline bool IsArchived(DWORD attrib) { return (attrib & FILE_ATTRIBUTE_ARCHIVE) != 0; }
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/utils/
generate_registry_tables.py 34 if 'vendor' == ids.attrib['type']:
36 value = an_id.attrib['value']
37 vendor = an_id.attrib['vendor']
38 if 'tool' in an_id.attrib:
39 tool = an_id.attrib['tool']
  /external/swiftshader/src/OpenGL/libGLESv2/
VertexDataManager.cpp 126 const VertexAttribute &attrib = attribs[i].mArrayEnabled ? attribs[i] : currentAttribs[i]; local
128 if(program->getAttributeStream(i) != -1 && attrib.mArrayEnabled)
130 if(!attrib.mBoundBuffer)
132 const bool isInstanced = attrib.mDivisor > 0;
133 mStreamingBuffer->addRequiredSpace(attrib.typeSize() * (isInstanced ? 1 : count));
145 const VertexAttribute &attrib = attribs[i].mArrayEnabled ? attribs[i] : currentAttribs[i]; local
147 if(attrib.mArrayEnabled)
149 const bool isInstanced = attrib.mDivisor > 0;
152 GLint firstVertexIndex = isInstanced ? instanceId / attrib.mDivisor : start;
154 Buffer *buffer = attrib.mBoundBuffer
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_feedback.c 39 const GLfloat *vtc = v->attrib[VARYING_SLOT_TEX0];
40 const GLfloat *color = v->attrib[VARYING_SLOT_COL0];
42 win[0] = v->attrib[VARYING_SLOT_POS][0];
43 win[1] = v->attrib[VARYING_SLOT_POS][1];
44 win[2] = v->attrib[VARYING_SLOT_POS][2] / ctx->DrawBuffer->_DepthMaxF;
45 win[3] = 1.0F / v->attrib[VARYING_SLOT_POS][3];
116 _mesa_update_hitflag( ctx, v0->attrib[VARYING_SLOT_POS][2] * zs );
117 _mesa_update_hitflag( ctx, v1->attrib[VARYING_SLOT_POS][2] * zs );
118 _mesa_update_hitflag( ctx, v2->attrib[VARYING_SLOT_POS][2] * zs );
127 _mesa_update_hitflag( ctx, v0->attrib[VARYING_SLOT_POS][2] * zs )
    [all...]
  /external/v8/tools/testrunner/local/
junit_output.py 35 self.root.attrib["name"] = test_suite_name
39 testCaseElement.attrib["name"] = " ".join(test_name)
40 testCaseElement.attrib["time"] = str(round(test_duration, 3))
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_bld_interp.c 118 attrib_name(LLVMValueRef val, unsigned attrib, unsigned chan, const char *suffix)
120 if(attrib == 0)
123 lp_build_name(val, "input%u.%c%s", attrib - 1, "xyzw"[chan], suffix);
169 unsigned attrib; local
171 for (attrib = 0; attrib < bld->num_attribs; ++attrib) {
183 const unsigned interp = bld->interp[attrib];
185 attrib * TGSI_NUM_CHANNELS);
206 attrib_name(dadxaos, attrib, 0, ".dadxaos")
248 unsigned attrib; local
377 unsigned attrib; local
565 unsigned attrib; local
707 unsigned attrib; local
    [all...]
  /frameworks/rs/script_api/
rs_math.spec 168 attrib: const
182 attrib: const
196 attrib: const
205 attrib: const
219 attrib: const
228 attrib: const
244 attrib: const
253 attrib: const
267 attrib: const
276 attrib: cons
    [all...]

Completed in 1198 milliseconds

1 2 3 4 5 6 7 8 91011>>