/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_fs_visitor.cpp | 295 /* As of gen6, we can no longer mix float and int sources. We have 426 const fs_reg sources[] = { local 431 assert(ARRAY_SIZE(sources) - 1 == FB_WRITE_LOGICAL_SRC_COMPONENTS); 433 sources, ARRAY_SIZE(sources)); 598 fs_reg sources[8]; local 703 sources[length++] = zero; 705 sources[length++] = this->outputs[VARYING_SLOT_LAYER]; 707 sources[length++] = zero; 710 sources[length++] = this->outputs[VARYING_SLOT_VIEWPORT] [all...] |
brw_fs.cpp | 52 const fs_reg *src, unsigned sources) 56 this->src = new fs_reg[MAX2(sources, 3)]; 57 for (unsigned i = 0; i < sources; i++) 62 this->sources = sources; 129 const fs_reg src[], unsigned sources) 131 init(opcode, exec_width, dst, src, sources); 138 this->src = new fs_reg[MAX2(that.sources, 3)]; 140 for (unsigned i = 0; i < that.sources; i++) 152 if (this->sources != num_sources) 1372 fs_reg *sources = ralloc_array(mem_ctx, fs_reg, 2); local [all...] |
/external/skia/gn/ |
gn_to_cmake.py | 134 CMakeTargetType.custom = CMakeTargetType('add_custom_target', 'SOURCES', 173 """All OBJECT libraries whose sources have not been absorbed.""" 233 def WriteAction(out, target, project, sources, synthetic_dependencies): 266 for sources_type_name in sources.values(): 294 def WriteActionForEach(out, target, project, sources, synthetic_dependencies): 296 inputs = target.properties.get('sources', []) 337 if 'input' in sources: 338 WriteVariable(out, sources['input'], ' ') 358 def WriteCopy(out, target, project, sources, synthetic_dependencies): 359 inputs = target.properties.get('sources', []) [all...] |
/external/testng/ant/ |
build.properties | 43 sources.testng.jar=${testng.fullname}-sources.jar
|
/external/testng/src/main/java/org/testng/internal/ |
TestNGMethod.java | 209 private ITestNGMethod[] clone(ITestNGMethod[] sources) {
210 ITestNGMethod[] clones= new ITestNGMethod[sources.length];
211 for(int i= 0; i < sources.length; i++) {
212 clones[i]= sources[i].clone();
|
/frameworks/av/media/libaudiohal/include/media/audiohal/ |
DeviceHalInterface.h | 94 const struct audio_port_config *sources,
|
/frameworks/hardware/interfaces/schedulerservice/1.0/ |
Android.mk | 11 intermediates := $(call local-generated-sources-dir, COMMON) 46 intermediates := $(call local-generated-sources-dir, COMMON)
|
/hardware/interfaces/tests/hash/1.0/ |
Android.mk | 11 intermediates := $(call local-generated-sources-dir, COMMON) 46 intermediates := $(call local-generated-sources-dir, COMMON)
|
/hardware/interfaces/tests/multithread/1.0/ |
Android.mk | 11 intermediates := $(call local-generated-sources-dir, COMMON) 46 intermediates := $(call local-generated-sources-dir, COMMON)
|
/hardware/interfaces/vr/1.0/ |
Android.mk | 11 intermediates := $(call local-generated-sources-dir, COMMON) 46 intermediates := $(call local-generated-sources-dir, COMMON)
|
/system/libhidl/transport/manager/1.1/ |
Android.mk | 11 intermediates := $(call local-generated-sources-dir, COMMON) 46 intermediates := $(call local-generated-sources-dir, COMMON)
|
/system/libhidl/transport/token/1.0/ |
Android.mk | 11 intermediates := $(call local-generated-sources-dir, COMMON) 45 intermediates := $(call local-generated-sources-dir, COMMON)
|
/system/tools/hidl/test/vendor/1.1/ |
Android.mk | 11 intermediates := $(call local-generated-sources-dir, COMMON) 49 intermediates := $(call local-generated-sources-dir, COMMON)
|
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
Rops.java | [all...] |
/dalvik/dx/src/com/android/dx/rop/code/ |
Rops.java | [all...] |
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/ |
Android.mk | 13 $(call __ndk_info,WARNING: Rebuilding libc++ libraries from sources!) 70 libcxxabi_sources_dir := $(strip $(wildcard $(NDK_ROOT)/sources/cxx-stl/llvm-libc++abi)) 72 $(error Can't find libcxxabi sources directory!!) 77 include $(libcxxabi_sources_dir)/sources.mk 137 $(call ndk_log,Rebuilding libc++ libraries from sources)
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-powerpc/ |
aix52.exp | 42 proc run_aix_test { size name ldopts asopts sources tools output } { 62 $sources \ 254 foreach { name ldopts asopts sources tools output } $test { 255 run_aix_test 32 $name $ldopts $asopts $sources $tools $output 256 run_aix_test 64 $name $ldopts $asopts $sources $tools $output
|
/external/deqp/external/vulkancts/framework/vulkan/ |
vkGlslToSpirV.cpp | 200 if (!program.sources[shaderType].empty()) 209 if (program.sources[shaderType].size() != 1) 215 std::string src = program.sources[shaderType][0]; 226 return program.sources[shaderType][0]; 258 if (!program.sources[shaderType].empty())
|
/frameworks/compile/libbcc/lib/ |
RSCompilerDriver.cpp | 306 const std::vector<Source*>& sources, 314 for (Source* source : sources) { 331 for (Source* source : sources) { 371 sourcesToFuse.push_back(sources[p.first]); 388 Source* source = sources[p.first];
|
/external/deqp/modules/gles3/functional/ |
es3fShaderApiTests.cpp | 107 void setShaderSources (glu::Shader& shader, const ShaderSources& sources) 109 std::vector<const char*> cStrings (sources.strings.size(), 0); 111 for (size_t ndx = 0; ndx < sources.strings.size(); ndx++) 112 cStrings[ndx] = sources.strings[ndx].c_str(); 114 if (sources.lengths.size() > 0) 115 shader.setSources((int)cStrings.size(), &cStrings[0], &sources.lengths[0]); 724 void insertRandomNullTermStrings (ShaderSources& sources) 727 std::vector<int> indices (sources.strings.size(), 0); 729 DE_ASSERT(sources.lengths.size() > 0); 730 DE_ASSERT(sources.lengths.size() == sources.strings.size()) 789 ShaderSources sources; local 1236 const glu::ProgramSources sources = glu::makeVtxFragSources(vertSrc, fragSrc); local 1361 const glu::ProgramSources sources = glu::makeVtxFragSources(vertSrc, fragSrc); local [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/distutils/command/ |
build_ext.py | 387 ext = Extension(ext_name, build_info['sources']) 428 filenames.extend(ext.sources) 454 sources = ext.sources 455 if sources is None or type(sources) not in (ListType, TupleType): 458 "'sources' must be present and must be " + 460 sources = list(sources) 463 depends = sources + ext.depend [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/distutils/command/ |
build_ext.py | 387 ext = Extension(ext_name, build_info['sources']) 428 filenames.extend(ext.sources) 454 sources = ext.sources 455 if sources is None or type(sources) not in (ListType, TupleType): 458 "'sources' must be present and must be " + 460 sources = list(sources) 463 depends = sources + ext.depend [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/ |
build_ext.py | 387 ext = Extension(ext_name, build_info['sources']) 428 filenames.extend(ext.sources) 454 sources = ext.sources 455 if sources is None or type(sources) not in (ListType, TupleType): 458 "'sources' must be present and must be " + 460 sources = list(sources) 463 depends = sources + ext.depend [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/ |
build_ext.py | 387 ext = Extension(ext_name, build_info['sources']) 428 filenames.extend(ext.sources) 454 sources = ext.sources 455 if sources is None or type(sources) not in (ListType, TupleType): 458 "'sources' must be present and must be " + 460 sources = list(sources) 463 depends = sources + ext.depend [all...] |
/external/python/cpython2/PCbuild/ |
get_externals.bat | 82 echo.Pull all sources necessary for compiling optional extension modules
84 echo.and pulls sources from %SVNROOT%.
86 echo.Use the -c or --clean option to clean up all external library sources
|