Searched refs:sources (Results 1 - 25 of 435) sorted by relevance

1234567891011>>

/xsrc/external/mit/libdrm/dist/
H A DAndroid.sources.bp.mk1 # Usage: make -f path/to/Android.sources.bp.mk NAMES=<> >Android.sources.bp
3 # It will read the Makefile.sources in the current directory, and
10 include Makefile.sources
15 $(info // Autogenerated with Android.sources.bp.mk)
/xsrc/external/mit/brotli/dist/
H A Dsetup.py59 if ext.sources is None or not isinstance(ext.sources, (list, tuple)):
62 "'sources' must be present and must be "
66 depends = ext.sources + ext.depends
75 for source in ext.sources:
83 for lang, sources in (('c', c_sources), ('c++', cxx_sources)):
100 sources,
120 language = ext.language or self.compiler.detect_language(sources)
182 sources=[
/xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/
H A Dbrw_fs_lower_pack.cpp44 for (unsigned i = 0; i < inst->sources; i++)
H A Dbrw_fs_validate.cpp51 for (unsigned i = 0; i < inst->sources; i++) {
H A Dbrw_fs_cse.cpp158 for (int i = 0; i < a->sources; i++) {
198 a->sources == b->sources &&
213 inst->sources);
218 for (int i = inst->header_size; i < inst->sources; i++) {
223 copy = bld.LOAD_PAYLOAD(inst->dst, payload, inst->sources,
228 const int sources = written / dst_width; local in function:create_copy_instr
229 fs_reg *payload = ralloc_array(bld.shader->mem_ctx, fs_reg, sources);
230 for (int i = 0; i < sources; i++) {
234 copy = bld.LOAD_PAYLOAD(inst->dst, payload, sources,
[all...]
/xsrc/external/mit/MesaLib/dist/src/intel/compiler/
H A Dbrw_fs_lower_pack.cpp44 for (unsigned i = 0; i < inst->sources; i++)
H A Dbrw_fs_validate.cpp51 for (unsigned i = 0; i < inst->sources; i++) {
H A Dbrw_fs_cse.cpp159 for (int i = 0; i < a->sources; i++) {
199 a->sources == b->sources &&
214 inst->sources);
219 for (int i = inst->header_size; i < inst->sources; i++) {
224 copy = bld.LOAD_PAYLOAD(inst->dst, payload, inst->sources,
229 const int sources = written / dst_width; local in function:create_copy_instr
230 fs_reg *payload = ralloc_array(bld.shader->mem_ctx, fs_reg, sources);
231 for (int i = 0; i < sources; i++) {
235 copy = bld.LOAD_PAYLOAD(inst->dst, payload, sources,
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/amd/vulkan/
H A DAndroid.mk26 include $(LOCAL_PATH)/Makefile.sources
59 intermediates := $(call local-generated-sources-dir)
71 $(call generated-sources-dir-for,STATIC_LIBRARIES,libmesa_amd_common,,) \
72 $(call generated-sources-dir-for,STATIC_LIBRARIES,libmesa_nir,,)/nir \
73 $(call generated-sources-dir-for,STATIC_LIBRARIES,libmesa_radv_common,,) \
74 $(call generated-sources-dir-for,STATIC_LIBRARIES,libmesa_vulkan_util,,)/util \
75 $(call generated-sources-dir-for,STATIC_LIBRARIES,libmesa_util,,)
152 $(call generated-sources-dir-for,STATIC_LIBRARIES,libmesa_radv_common,,)
/xsrc/external/mit/MesaLib.old/dist/src/mesa/
H A DAndroid.gen.mk30 intermediates := $(call local-generated-sources-dir)
32 # This is the list of auto-generated files: sources and headers
33 sources := \ macro
46 LOCAL_SRC_FILES := $(filter-out $(sources), $(LOCAL_SRC_FILES))
52 sources += x86/matypes.h
57 sources := $(addprefix $(intermediates)/, $(sources)) macro
59 LOCAL_GENERATED_SOURCES += $(sources)
/xsrc/external/mit/MesaLib/dist/.gitlab-ci/container/debian/
H A Darm_build.sh7 sed -i -e 's/http:\/\/deb/https:\/\/deb/g' /etc/apt/sources.list
8 echo 'deb https://deb.debian.org/debian buster main' >/etc/apt/sources.list.d/buster.list
H A Darm_test.sh8 sed -i -e 's/http:\/\/deb/https:\/\/deb/g' /etc/apt/sources.list
/xsrc/external/mit/makedepend/dist/
H A DREADME.md4 makedepend parses C sources to make dependency lists for Makefiles.
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/radeonsi/
H A DAndroid.mk27 include $(LOCAL_PATH)/Makefile.sources
39 $(call generated-sources-dir-for,STATIC_LIBRARIES,libmesa_amd_common,,)/common \
40 $(call generated-sources-dir-for,STATIC_LIBRARIES,libmesa_nir,,)/nir
47 intermediates := $(call local-generated-sources-dir)
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/common/
H A DAndroid.mk32 include $(LOCAL_PATH)/Makefile.sources
37 intermediates := $(call local-generated-sources-dir)
59 include $(LOCAL_PATH)/Makefile.sources
/xsrc/external/mit/freetype/dist/src/base/
H A Dftdbgmem.c79 * We don't need a resizable array for the memory sources because
129 FT_MemSource sources[FT_MEM_SOURCE_BUCKETS]; member in struct:FT_MemTableRec_
396 /* remove all sources */
402 for ( source = table->sources[i]; source != NULL; source = next )
408 table->sources[i] = NULL;
464 pnode = &table->sources[hash % FT_MEM_SOURCE_BUCKETS];
930 FT_MemSource* bucket = table->sources;
932 FT_MemSource* sources; local in function:FT_DumpMemory
947 sources = (FT_MemSource*)
949 table, count * (FT_Long)sizeof ( *sources ) );
[all...]
/xsrc/external/mit/MesaLib/dist/src/compiler/nir/
H A Dnir_algebraic.py196 { ${', '.join(src.c_value_ptr(cache) for src in val.sources)} },
373 self.sources = [ Value.create(src, "{0}_{1}".format(name_base, i), varset)
377 assert len(self.sources) <= 4
400 if len(self.sources) != len(other.sources):
406 return all(s.equivalent(o) for s, o in zip(self.sources, other.sources))
413 # A note about the explicit "len(self.sources)" check. The list of
414 # sources comes from user input, and that input might be bad. Check
419 len(self.sources) >
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/intel/
H A DAndroid.compiler.mk44 $(call generated-sources-dir-for,STATIC_LIBRARIES,libmesa_glsl,,)/glsl \
45 $(call generated-sources-dir-for,STATIC_LIBRARIES,libmesa_nir,,)/nir \
53 intermediates := $(call local-generated-sources-dir)
H A DAndroid.vulkan.mk24 include $(LOCAL_PATH)/Makefile.sources
67 intermediates := $(call local-generated-sources-dir)
107 $(call generated-sources-dir-for,STATIC_LIBRARIES,libmesa_anv_entrypoints,,)/vulkan \
108 $(call generated-sources-dir-for,STATIC_LIBRARIES,libmesa_nir,,)/nir \
109 $(call generated-sources-dir-for,STATIC_LIBRARIES,libmesa_vulkan_common,,)/vulkan \
110 $(call generated-sources-dir-for,STATIC_LIBRARIES,libmesa_vulkan_util,,)/util
252 intermediates := $(call local-generated-sources-dir)
317 $(call generated-sources-dir-for,STATIC_LIBRARIES,libmesa_anv_entrypoints,,)/vulkan \
318 $(call generated-sources-dir-for,STATIC_LIBRARIES,libmesa_vulkan_common,,)/vulkan
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/
H A DAndroid.mk27 include $(LOCAL_PATH)/Makefile.sources
60 # generate sources
62 intermediates := $(call local-generated-sources-dir)
/xsrc/external/mit/MesaLib.old/dist/src/mesa/program/
H A DAndroid.mk41 include $(MESA_TOP)/src/mesa/Makefile.sources
50 intermediates := $(call local-generated-sources-dir)
52 # TODO(chadv): In Makefile.sources, move these vars to a different list so we can
/xsrc/external/mit/MesaLib.old/dist/src/amd/
H A DAndroid.common.mk39 # generate sources
41 intermediates := $(call local-generated-sources-dir)
55 $(call generated-sources-dir-for,STATIC_LIBRARIES,libmesa_nir,,)/nir \
/xsrc/external/mit/MesaLib/dist/src/microsoft/clc/
H A Dcompute_test.h162 compile(const std::vector<const char *> &sources,
167 link(const std::vector<Shader> &sources,
306 void run_shader(const std::vector<const char *> &sources, argument
313 run_shader_with_raw_args(compile(sources), compile_args, raw_args);
317 void run_shader(const std::vector<const char *> &sources, argument
324 compile(sources, compile_args.compiler_command_line),
/xsrc/external/mit/imake/dist/
H A Dxmkmf.cpp3 XCOMM make a Makefile from an Imakefile from inside or outside the sources
/xsrc/external/mit/libpciaccess/dist/
H A DREADME.md5 sources via the doxygen command. Information about porting Xorg

Completed in 3043 milliseconds

1234567891011>>