Searched refs:attrib (Results 1 - 25 of 311) sorted by relevance

1234567891011>>

/external/deqp/framework/qphelper/
H A DqpXmlWriter.h54 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
76 qpXmlAttribute attrib; local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/swrast_setup/
H A Dss_tritmp.h53 GLfloat ex = v[0]->attrib[FRAG_ATTRIB_WPOS][0] - v[2]->attrib[FRAG_ATTRIB_WPOS][0];
54 GLfloat ey = v[0]->attrib[FRAG_ATTRIB_WPOS][1] - v[2]->attrib[FRAG_ATTRIB_WPOS][1];
55 GLfloat fx = v[1]->attrib[FRAG_ATTRIB_WPOS][0] - v[2]->attrib[FRAG_ATTRIB_WPOS][0];
56 GLfloat fy = v[1]->attrib[FRAG_ATTRIB_WPOS][1] - v[2]->attrib[FRAG_ATTRIB_WPOS][1];
77 COPY_4V(saved_col0[0], v[0]->attrib[FRAG_ATTRIB_COL0]);
78 COPY_4V(saved_col0[1], v[1]->attrib[FRAG_ATTRIB_COL
[all...]
/external/mesa3d/src/mesa/swrast_setup/
H A Dss_tritmp.h53 GLfloat ex = v[0]->attrib[FRAG_ATTRIB_WPOS][0] - v[2]->attrib[FRAG_ATTRIB_WPOS][0];
54 GLfloat ey = v[0]->attrib[FRAG_ATTRIB_WPOS][1] - v[2]->attrib[FRAG_ATTRIB_WPOS][1];
55 GLfloat fx = v[1]->attrib[FRAG_ATTRIB_WPOS][0] - v[2]->attrib[FRAG_ATTRIB_WPOS][0];
56 GLfloat fy = v[1]->attrib[FRAG_ATTRIB_WPOS][1] - v[2]->attrib[FRAG_ATTRIB_WPOS][1];
77 COPY_4V(saved_col0[0], v[0]->attrib[FRAG_ATTRIB_COL0]);
78 COPY_4V(saved_col0[1], v[1]->attrib[FRAG_ATTRIB_COL
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/pkcs12/
H A Dp12_attr.c68 if (X509at_add1_attr_by_NID(&bag->attrib, NID_localKeyID,
93 if (X509at_add1_attr_by_NID(&bag->attrib, NID_friendlyName,
104 if (X509at_add1_attr_by_NID(&bag->attrib, NID_friendlyName,
114 if (X509at_add1_attr_by_NID(&bag->attrib, NID_ms_csp_name,
123 X509_ATTRIBUTE *attrib; local
127 attrib = sk_X509_ATTRIBUTE_value (attrs, i);
128 if (OBJ_obj2nid (attrib->object) == attr_nid) {
129 if (sk_ASN1_TYPE_num (attrib->value.set))
130 return sk_ASN1_TYPE_value(attrib->value.set, 0);
/external/openssl/crypto/pkcs12/
H A Dp12_attr.c68 if (X509at_add1_attr_by_NID(&bag->attrib, NID_localKeyID,
93 if (X509at_add1_attr_by_NID(&bag->attrib, NID_friendlyName,
104 if (X509at_add1_attr_by_NID(&bag->attrib, NID_friendlyName,
114 if (X509at_add1_attr_by_NID(&bag->attrib, NID_ms_csp_name,
123 X509_ATTRIBUTE *attrib; local
127 attrib = sk_X509_ATTRIBUTE_value (attrs, i);
128 if (OBJ_obj2nid (attrib->object) == attr_nid) {
129 if (sk_ASN1_TYPE_num (attrib->value.set))
130 return sk_ASN1_TYPE_value(attrib->value.set, 0);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_prim_emit.c79 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[
[all...]
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_prim_emit.c79 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[
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d9/
H A DVertexBuffer9.cpp68 bool VertexBuffer9::storeVertexAttributes(const gl::VertexAttribute &attrib, const gl::VertexAttribCurrentValueData &currentValue, argument
73 gl::Buffer *buffer = attrib.mBoundBuffer.get();
75 int inputStride = attrib.stride();
76 int elementSize = attrib.typeSize();
83 if (!spaceRequired(attrib, count, instances, &mapSize))
97 if (attrib.mArrayEnabled)
102 input = static_cast<const char*>(storage->getData()) + static_cast<int>(attrib.mOffset);
106 input = static_cast<const char*>(attrib.mPointer);
114 if (instances == 0 || attrib.mDivisor == 0)
119 gl::VertexFormat vertexFormat(attrib, currentValu
144 getSpaceRequired(const gl::VertexAttribute &attrib, GLsizei count, GLsizei instances, unsigned int *outSpaceRequired) const argument
202 spaceRequired(const gl::VertexAttribute &attrib, std::size_t count, GLsizei instances, unsigned int *outSpaceRequired) argument
[all...]
H A DVertexBuffer9.h28 virtual bool storeVertexAttributes(const gl::VertexAttribute &attrib, const gl::VertexAttribCurrentValueData &currentValue,
31 virtual bool getSpaceRequired(const gl::VertexAttribute &attrib, GLsizei count, GLsizei instances, unsigned int *outSpaceRequired) const;
48 static bool spaceRequired(const gl::VertexAttribute &attrib, std::size_t count, GLsizei instances,
/external/chromium_org/gpu/command_buffer/service/
H A Dvertex_attrib_manager_unittest.cc63 VertexAttrib* attrib = manager_->GetVertexAttrib(ii); local
64 ASSERT_TRUE(attrib != NULL);
65 EXPECT_EQ(ii, attrib->index());
66 EXPECT_TRUE(attrib->buffer() == NULL);
67 EXPECT_EQ(0, attrib->offset());
68 EXPECT_EQ(4, attrib->size());
69 EXPECT_EQ(static_cast<GLenum>(GL_FLOAT), attrib->type());
70 EXPECT_EQ(GL_FALSE, attrib->normalized());
71 EXPECT_EQ(0, attrib->gl_stride());
72 EXPECT_FALSE(attrib
107 VertexAttrib* attrib = manager_->GetVertexAttrib(1); local
143 VertexAttrib* attrib = manager_->GetVertexAttrib(1); local
[all...]
H A Dvertex_attrib_manager.cc180 VertexAttrib* attrib = *it; local
182 current_program->GetAttribInfoByLocation(attrib->index());
184 divisor0 |= (attrib->divisor() == 0);
185 GLuint count = attrib->MaxVertexAccessed(primcount, max_vertex_accessed);
186 // This attrib is used in the current program.
187 if (!attrib->CanAccess(count)) {
192 base::IntToString(attrib->index())).c_str());
196 Buffer* buffer = attrib->buffer();
197 glEnableVertexAttribArray(attrib->index());
203 attrib
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dr200_maos_arrays.c87 GLubyte attrib = vimap_rev[i]; local
88 if (attrib != 255) {
91 emitsize = (VB->AttribPtr[attrib]->size);
105 assert(attrib == VERT_ATTRIB_WEIGHT);
106 emitsize = (VB->AttribPtr[attrib]->size);
110 assert(attrib == VERT_ATTRIB_NORMAL);
116 assert(attrib == VERT_ATTRIB_FOG);
121 (char *)VB->AttribPtr[attrib]->data,
123 VB->AttribPtr[attrib]->stride,
128 (char *)VB->AttribPtr[attrib]
[all...]
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dr200_maos_arrays.c87 GLubyte attrib = vimap_rev[i]; local
88 if (attrib != 255) {
91 emitsize = (VB->AttribPtr[attrib]->size);
105 assert(attrib == VERT_ATTRIB_WEIGHT);
106 emitsize = (VB->AttribPtr[attrib]->size);
110 assert(attrib == VERT_ATTRIB_NORMAL);
116 assert(attrib == VERT_ATTRIB_FOG);
121 (char *)VB->AttribPtr[attrib]->data,
123 VB->AttribPtr[attrib]->stride,
128 (char *)VB->AttribPtr[attrib]
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/tnl_dd/
H A Dt_dd_vb.c92 dst->attrib[FRAG_ATTRIB_WPOS][0] = s[0] * src->v.x + s[12];
93 dst->attrib[FRAG_ATTRIB_WPOS][1] = s[5] * src->v.y + s[13];
94 dst->attrib[FRAG_ATTRIB_WPOS][2] = s[10] * src->v.z + s[14];
95 dst->attrib[FRAG_ATTRIB_WPOS][3] = 1.0;
97 dst->attrib[FRAG_ATTRIB_WPOS][0] = UNVIEWPORT_X( src->v.x );
98 dst->attrib[FRAG_ATTRIB_WPOS][1] = UNVIEWPORT_Y( src->v.y );
99 dst->attrib[FRAG_ATTRIB_WPOS][2] = UNVIEWPORT_Z( src->v.z );
100 dst->attrib[FRAG_ATTRIB_WPOS][3] = 1.0;
112 dst->attrib[FRAG_ATTRIB_WPOS][0] = s[0] * src->v.x * oow + s[12];
113 dst->attrib[FRAG_ATTRIB_WPO
[all...]
/external/mesa3d/src/mesa/tnl_dd/
H A Dt_dd_vb.c92 dst->attrib[FRAG_ATTRIB_WPOS][0] = s[0] * src->v.x + s[12];
93 dst->attrib[FRAG_ATTRIB_WPOS][1] = s[5] * src->v.y + s[13];
94 dst->attrib[FRAG_ATTRIB_WPOS][2] = s[10] * src->v.z + s[14];
95 dst->attrib[FRAG_ATTRIB_WPOS][3] = 1.0;
97 dst->attrib[FRAG_ATTRIB_WPOS][0] = UNVIEWPORT_X( src->v.x );
98 dst->attrib[FRAG_ATTRIB_WPOS][1] = UNVIEWPORT_Y( src->v.y );
99 dst->attrib[FRAG_ATTRIB_WPOS][2] = UNVIEWPORT_Z( src->v.z );
100 dst->attrib[FRAG_ATTRIB_WPOS][3] = 1.0;
112 dst->attrib[FRAG_ATTRIB_WPOS][0] = s[0] * src->v.x * oow + s[12];
113 dst->attrib[FRAG_ATTRIB_WPO
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d11/
H A DVertexBuffer11.cpp69 bool VertexBuffer11::storeVertexAttributes(const gl::VertexAttribute &attrib, const gl::VertexAttribCurrentValueData &currentValue, argument
74 gl::Buffer *buffer = attrib.mBoundBuffer.get();
75 int inputStride = attrib.stride();
89 if (attrib.mArrayEnabled)
94 input = static_cast<const char*>(storage->getData()) + static_cast<int>(attrib.mOffset);
98 input = static_cast<const char*>(attrib.mPointer);
106 if (instances == 0 || attrib.mDivisor == 0)
111 gl::VertexFormat vertexFormat(attrib, currentValue.Type);
127 bool VertexBuffer11::getSpaceRequired(const gl::VertexAttribute &attrib, GLsizei count, argument
131 if (attrib
[all...]
/external/deqp/framework/egl/
H A DegluCallLogWrapper.cpp124 // Config attrib pointer formatter
129 deUint32 attrib; member in class:eglu::ConfigAttribValuePointerFmt
131 ConfigAttribValuePointerFmt (deUint32 attrib_, const int* value_) : attrib(attrib_), value(value_) {}
134 inline ConfigAttribValuePointerFmt getConfigAttribValuePointerStr (deUint32 attrib, const int* value) { return ConfigAttribValuePointerFmt(attrib, value); } argument
139 return str << getConfigAttribValueStr(fmt.attrib, *fmt.value);
144 // Context attrib pointer formatter
149 deUint32 attrib; member in class:eglu::ContextAttribValuePointerFmt
151 ContextAttribValuePointerFmt (deUint32 attrib_, const int* value_) : attrib(attrib_), value(value_) {}
154 inline ContextAttribValuePointerFmt getContextAttribValuePointerStr (deUint32 attrib, cons argument
169 deUint32 attrib; member in class:eglu::SurfaceAttribValuePointerFmt
174 getSurfaceAttribValuePointerStr(deUint32 attrib, const int* value) argument
[all...]
H A DegluStrUtil.cpp161 int attrib = fmt.attribs[pos]; local
166 if (attrib == EGL_NONE)
173 const char* attribName = getConfigAttribName(attrib);
178 str << attribName << ", " << getConfigAttribValueStr(attrib, fmt.attribs[pos+1]);
184 str << tcu::toHex(attrib) << ", ???";
201 int attrib = fmt.attribs[pos]; local
206 if (attrib == EGL_NONE)
213 const char* attribName = getSurfaceAttribName(attrib);
218 str << attribName << ", " << getSurfaceAttribValueStr(attrib, fmt.attribs[pos+1]);
224 str << tcu::toHex(attrib) << ",
241 int attrib = fmt.attribs[pos]; local
[all...]
/external/lzma/CPP/Windows/
H A DFileFind.h17 inline bool IsReadOnly(DWORD attrib) { return (attrib & FILE_ATTRIBUTE_READONLY) != 0; } argument
18 inline bool IsHidden(DWORD attrib) { return (attrib & FILE_ATTRIBUTE_HIDDEN) != 0; } argument
19 inline bool IsSystem(DWORD attrib) { return (attrib & FILE_ATTRIBUTE_SYSTEM) != 0; } argument
20 inline bool IsDir(DWORD attrib) { return (attrib & FILE_ATTRIBUTE_DIRECTORY) != 0; } argument
21 inline bool IsArchived(DWORD attrib) { return (attrib argument
22 IsCompressed(DWORD attrib) argument
23 IsEncrypted(DWORD attrib) argument
[all...]
/external/chromium_org/gpu/command_buffer/client/
H A Dvertex_array_object_manager.cc37 // to a special VBO and reset the actual vertex attrib pointers to point to this
41 // an attrib is a client side buffer we pass the info back the user expects.
207 VertexAttrib& attrib = vertex_attribs_[ii]; local
208 if (attrib.buffer_id() == id) {
209 attrib.set_buffer_id(0);
210 if (attrib.enabled()) {
233 VertexAttrib& attrib = vertex_attribs_[index]; local
234 if (attrib.enabled() != enabled) {
235 if (attrib.IsClientSide()) {
239 attrib
253 VertexAttrib& attrib = vertex_attribs_[index]; local
269 const VertexAttrib* attrib = GetAttrib(index); local
302 VertexAttrib& attrib = vertex_attribs_[index]; local
311 const VertexAttrib* attrib = GetAttrib(index); local
323 const VertexAttrib* attrib = &vertex_attribs_[index]; local
502 const VertexArrayObject::VertexAttrib& attrib = vertex_attribs[ii]; local
519 const VertexArrayObject::VertexAttrib& attrib = vertex_attribs[ii]; local
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A DVertexBuffer.cpp92 bool VertexBufferInterface::storeVertexAttributes(const gl::VertexAttribute &attrib, const gl::VertexAttribCurrentValueData &currentValue, argument
96 if (!mVertexBuffer->getSpaceRequired(attrib, count, instances, &spaceRequired))
112 if (!mVertexBuffer->storeVertexAttributes(attrib, currentValue, start, count, instances, mWritePosition))
157 bool VertexBufferInterface::directStoragePossible(const gl::VertexAttribute &attrib, argument
160 gl::Buffer *buffer = attrib.mBoundBuffer.get();
174 if (attrib.mType != GL_FLOAT)
176 gl::VertexFormat vertexFormat(attrib, currentValue.Type);
179 getVertexBuffer()->getSpaceRequired(attrib, 1, 0, &outputElementSize);
185 bool isAligned = (static_cast<size_t>(attrib.stride()) % alignment == 0) &&
186 (static_cast<size_t>(attrib
272 storeVertexAttributes(const gl::VertexAttribute &attrib, const gl::VertexAttribCurrentValueData &currentValue, GLint start, GLsizei count, GLsizei instances, unsigned int *outStreamOffset) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_bld_interp.c118 attrib_name(LLVMValueRef val, unsigned attrib, unsigned chan, const char *suffix) argument
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,
249 unsigned attrib; local
371 unsigned attrib; local
561 unsigned attrib; local
703 unsigned attrib; local
[all...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_bld_interp.c118 attrib_name(LLVMValueRef val, unsigned attrib, unsigned chan, const char *suffix) argument
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,
249 unsigned attrib; local
371 unsigned attrib; local
561 unsigned attrib; local
703 unsigned attrib; local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_feedback.c40 const GLfloat *vtc = v->attrib[FRAG_ATTRIB_TEX0];
41 const GLfloat *color = v->attrib[FRAG_ATTRIB_COL0];
43 win[0] = v->attrib[FRAG_ATTRIB_WPOS][0];
44 win[1] = v->attrib[FRAG_ATTRIB_WPOS][1];
45 win[2] = v->attrib[FRAG_ATTRIB_WPOS][2] / ctx->DrawBuffer->_DepthMaxF;
46 win[3] = 1.0F / v->attrib[FRAG_ATTRIB_WPOS][3];
117 _mesa_update_hitflag( ctx, v0->attrib[FRAG_ATTRIB_WPOS][2] * zs );
118 _mesa_update_hitflag( ctx, v1->attrib[FRAG_ATTRIB_WPOS][2] * zs );
119 _mesa_update_hitflag( ctx, v2->attrib[FRAG_ATTRIB_WPOS][2] * zs );
128 _mesa_update_hitflag( ctx, v0->attrib[FRAG_ATTRIB_WPO
[all...]
/external/chromium_org/v8/tools/testrunner/local/
H A Djunit_output.py35 self.root.attrib["name"] = test_suite_name
39 testCaseElement.attrib["name"] = " ".join(test_name)
40 testCaseElement.attrib["time"] = str(round(test_duration, 3))

Completed in 809 milliseconds

1234567891011>>