/external/mesa3d/src/gallium/auxiliary/indices/ |
u_indices_gen.py | 106 def vert( intype, outtype, v0 ): 108 return '(' + outtype + ')(' + v0 + ')' 110 return '(' + outtype + ')in[' + v0 + ']' 112 def point( intype, outtype, ptr, v0 ): 113 print ' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';' 115 def line( intype, outtype, ptr, v0, v1 ): 116 print ' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';' 117 print ' (' + ptr + ')[1] = ' + vert( intype, outtype, v1 ) + ';' 119 def tri( intype, outtype, ptr, v0, v1, v2 ): 120 print ' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + '; [all...] |
u_unfilled_gen.py | 95 def vert( intype, outtype, v0 ): 97 return '(' + outtype + ')(' + v0 + ')' 99 return '(' + outtype + ')in[' + v0 + ']' 101 def line( intype, outtype, ptr, v0, v1 ): 102 print ' (' + ptr + ')[0] = ' + vert( intype, outtype, v0 ) + ';' 103 print ' (' + ptr + ')[1] = ' + vert( intype, outtype, v1 ) + ';' 109 def do_tri( intype, outtype, ptr, v0, v1, v2 ): 110 line( intype, outtype, ptr, v0, v1 ) 111 line( intype, outtype, ptr + '+2', v1, v2 ) 112 line( intype, outtype, ptr + '+4', v2, v0 [all...] |
/external/skia/src/animator/ |
SkAnimateSet.cpp | 63 SkDisplayTypes outType = fFieldInfo->getType(); 64 int comps = outType == SkType_String || outType == SkType_DynamicString ? 1 : 67 fValues.setType(outType); 69 if (outType == SkType_String || outType == SkType_DynamicString) 74 SkASSERT(fValues.getType() == outType); 83 outType = SkType_MSec; 85 fFieldInfo->setValue(maker, &fValues, fFieldOffset, comps, this, outType, formula.size() > 0 ? formula : to);
|
SkAnimateField.cpp | 80 SkDisplayTypes outType = fFieldInfo->getType(); 83 fFieldInfo->setValue(maker, &fValues, 0, 0, NULL, outType, to); 95 if (outType == SkType_ARGB) { 97 outType = SkType_Float; 99 fValues.setType(outType); 104 outType = SkType_MSec; 109 fFieldInfo->setValue(maker, &fValues, fFieldOffset, max, this, outType, from); 110 fFieldInfo->setValue(maker, &fValues, fComponents + fFieldOffset, max, this, outType, to);
|
SkMemberInfo.cpp | 184 int storageOffset, int maxStorage, SkDisplayable* displayable, SkDisplayTypes outType, 338 untypedStorage, outType, scriptValue)) { 350 int storageOffset, int maxStorage, SkDisplayable* displayable, SkDisplayTypes outType, 352 return setValue(maker, arrayStorage, storageOffset, maxStorage, displayable, outType, raw.c_str(), 357 int storageOffset, int maxStorage, void* untypedStorage, SkDisplayTypes outType, 425 } else if (type == SkType_ARGB && outType == SkType_Float) {
|
SkMemberInfo.h | 88 SkDisplayTypes outType, const char value[], size_t len) const; 91 SkDisplayTypes outType, SkString& str) const; 94 int storageOffset, int maxStorage, void* untypedStorage, SkDisplayTypes outType,
|
/frameworks/base/tools/aapt/tests/ |
AaptGroupEntry_test.cpp | 27 String8* outType) { 28 if (entry.initFromDirName(dirName, outType)) { 35 String8* outType) { 36 return TestParse(entry, String8(input), outType);
|
/external/icu/icu4c/source/tools/toolutil/ |
pkg_icu.h | 17 char outType);
|
package.h | 81 void writePackage(const char *filename, char outType, const char *comment); 118 void extractItem(const char *filesPath, int32_t itemIndex, char outType); 119 void extractItems(const char *filesPath, const char *pattern, char outType); 120 void extractItems(const char *filesPath, const Package &listPkg, char outType); 123 void extractItem(const char *filesPath, const char *outName, int32_t itemIndex, char outType);
|
package.cpp | 687 Package::writePackage(const char *filename, char outType, const char *comment) { 725 makeTypeProps(outType, outCharset, outIsBigEndian); 728 // one is a no-op for local type==outType 731 i=makeTypeEnum(outType); 778 prefix[prefixLength-1]=outType; [all...] |
pkg_icu.cpp | 151 writePackageDatFile(const char *outFilename, const char *outComment, const char *sourcePath, const char *addList, Package *pkg, char outType) { 172 pkg->writePackage(outFilename, outType, outComment);
|
/external/deqp/modules/gles2/scripts/ |
gen-conversions.py | 157 outType = outValues[0].typeString() 158 self.name = "%s_to_%s" % (inType, outType) 159 self.op = "out0 = %s(in0);" % outType 161 self.outputs = [("%s out0" % outType, outValues)] 174 outType = outValue.typeString() 175 self.name = "%s_to_%s" % (inType, outType) 176 self.op = "%s in0 = %s;\n%s out0 = %s(in0);" % (inType, str(inValue), outType, outType) 178 self.outType = outType [all...] |
gen-swizzles.py | 239 outType = outputs[0].typeString() 240 vectorSwizzleCases.append(SwizzleCase(caseName, precision, dataType, swizzle, [("%s in0" % dataType, inputs)], [("%s out0" % outType, outputs)]))
|
/external/deqp/modules/gles3/scripts/ |
gen-conversions.py | 170 outType = outValues[0].typeString() 171 self.name = "%s_to_%s" % (inType, outType) 172 self.op = "out0 = %s(in0);" % outType 174 self.outputs = [("%s out0" % outType, outValues)] 187 outType = outValue.typeString() 188 self.name = "%s_to_%s" % (inType, outType) 189 self.op = "%s in0 = %s;\n%s out0 = %s(in0);" % (inType, str(inValue), outType, outType) 191 self.outType = outType [all...] |
gen-swizzles.py | 243 outType = outputs[0].typeString() 244 vectorSwizzleCases.append(SwizzleCase(caseName, precision, dataType, swizzle, [("%s in0" % dataType, inputs)], [("%s out0" % outType, outputs)]))
|
/external/deqp/modules/glshared/ |
glsShaderConstExprTests.cpp | 101 const DataType outType = cases[caseNdx].outType; 107 switch (outType) 129 expected.dataType = outType; 132 shaderTemplateParams["CASE_BASE_TYPE"] = glu::getDataTypeName(outType);
|
glsShaderConstExprTests.hpp | 59 DataType outType;
|
/external/deqp/modules/gles3/functional/ |
es3fPixelBufferObjectTests.cpp | 206 std::string outtype = ""; local 209 outtype = "vec4"; 215 outtype = "vec4"; 219 outtype = "ivec4"; 223 outtype = "uvec4"; 227 outtype = "vec4"; 257 fragmentShaderSource << "layout (location = 0) out mediump " << outtype << " o_color;\n" 260 "\to_color = " << outtype << "(v_color);\n" local
|
/pdk/apps/TestingCamera/src/com/android/testingcamera/ |
CallbackProcessor.java | 68 Type outType = tb.create(); 70 mAllocationOut = Allocation.createTyped(mRS, outType,
|
/frameworks/rs/cpu_ref/ |
rsCpuIntrinsicColorMatrix.cpp | 116 uint32_t outType :4; // [8 - 11] 226 key.u.outType = RS_TYPE_FLOAT_32; 227 rsAssert(key.u.outType == RS_TYPE_FLOAT_32); 266 key.u.copyAlpha = !(key.u.inType || key.u.outType); 308 if (key.u.inType && !key.u.outType) { 467 // inType, outType float if nonzero 468 if (!(key.u.inType || key.u.outType)) { 522 if (key.u.inType || key.u.outType) { 590 if (key.u.outType) { 720 if (key.u.inType != key.u.outType) { [all...] |
/external/icu/icu4c/source/tools/icupkg/ |
icupkg.cpp | 256 char outType; 353 outType=type[0]; 354 switch(outType) { 370 isModified|=(UBool)(!isPackage || outType!=pkg->getInType()); 372 outType=pkg->getInType(); // default to input type 374 outType=0; /* tells extractItem() to not swap */ 398 pkg->extractItem(destPath, outFilename, 0, outType); 471 pkg->extractItems(destPath, *listPkg, outType); 530 *(s-5)=outType; 537 result = writePackageDatFile(outFilename, outComment, NULL, NULL, pkg, outType); [all...] |
/external/deqp/modules/gles31/scripts/ |
gen-implicit-conversions.py | 50 ${{OUTTYPE}} func (${{OUTTYPE}} a) 52 return a * ${{OUTTYPE}}(2); 108 ${{OUTTYPE}} val; 183 struct { ${{OUTTYPE}} value; } b; 489 "OUTTYPE": self.out_type, 642 "OUTTYPE": self.out_type, 744 "OUTTYPE": self.out_type,
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
tdh.h | 74 USHORT OutType;
|
/external/icu/icu4c/source/test/perf/perldriver/ |
Output.pm | 15 my $outType = "HTML"; 191 if($outType eq 'HTML') { 243 if($outType eq 'HTML') {
|
/prebuilts/misc/common/swig/include/2.0.11/ocaml/ |
ocaml.swg | 84 swig_type_info *intype, swig_type_info *outtype) { 87 outptr, outtype) == -1;
|