HomeSort by: relevance | last modified time | path
    Searched refs:build (Results 1 - 25 of 614) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /xsrc/external/mit/ctwm/dist/client/
Makefile 2 client all build ctwm: ../build/Makefile
3 ( cd ../build && ${MAKE} ${@} )
5 ../build/Makefile cmake: ../CMakeLists.txt
  /xsrc/external/mit/MesaLib.old/src/compiler/nir/
nir_builder_opcodes.h 29 nir_b2f16(nir_builder *build, nir_ssa_def *src0)
31 return nir_build_alu(build, nir_op_b2f16, src0, NULL, NULL, NULL);
34 nir_b2f32(nir_builder *build, nir_ssa_def *src0)
36 return nir_build_alu(build, nir_op_b2f32, src0, NULL, NULL, NULL);
39 nir_b2f64(nir_builder *build, nir_ssa_def *src0)
41 return nir_build_alu(build, nir_op_b2f64, src0, NULL, NULL, NULL);
44 nir_b2i1(nir_builder *build, nir_ssa_def *src0)
46 return nir_build_alu(build, nir_op_b2i1, src0, NULL, NULL, NULL);
49 nir_b2i16(nir_builder *build, nir_ssa_def *src0)
51 return nir_build_alu(build, nir_op_b2i16, src0, NULL, NULL, NULL)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/
nir_builder.h 44 nir_builder_init(nir_builder *build, nir_function_impl *impl)
46 memset(build, 0, sizeof(*build));
47 build->exact = false;
48 build->impl = impl;
49 build->shader = impl->function->shader;
53 nir_builder_init_simple_shader(nir_builder *build, void *mem_ctx,
57 build->shader = nir_shader_create(mem_ctx, stage, options, NULL);
58 nir_function *func = nir_function_create(build->shader, "main");
60 build->exact = false
    [all...]
  /xsrc/external/mit/MesaLib/src/compiler/nir/
nir_builder_opcodes.h 29 nir_amul(nir_builder *build, nir_ssa_def *src0, nir_ssa_def *src1)
31 return nir_build_alu(build, nir_op_amul, src0, src1, NULL, NULL);
34 nir_b16all_fequal16(nir_builder *build, nir_ssa_def *src0, nir_ssa_def *src1)
36 return nir_build_alu(build, nir_op_b16all_fequal16, src0, src1, NULL, NULL);
39 nir_b16all_fequal2(nir_builder *build, nir_ssa_def *src0, nir_ssa_def *src1)
41 return nir_build_alu(build, nir_op_b16all_fequal2, src0, src1, NULL, NULL);
44 nir_b16all_fequal3(nir_builder *build, nir_ssa_def *src0, nir_ssa_def *src1)
46 return nir_build_alu(build, nir_op_b16all_fequal3, src0, src1, NULL, NULL);
49 nir_b16all_fequal4(nir_builder *build, nir_ssa_def *src0, nir_ssa_def *src1)
51 return nir_build_alu(build, nir_op_b16all_fequal4, src0, src1, NULL, NULL)
    [all...]
  /xsrc/external/mit/MesaLib/dist/.gitlab-ci/container/
build-apitrace.sh 13 mkdir build
14 cp _build/apitrace build
15 cp _build/eglretrace build
16 ${STRIP_CMD:-strip} build/*
17 find . -not -path './build' -not -path './build/*' -delete
build-virglrenderer.sh 8 meson build/ $EXTRA_MESON_ARGS
9 ninja -C build install
17 meson build/ $EXTRA_MESON_ARGS
18 ninja -C build install
build-fossilize.sh 9 mkdir build
10 cd build
build-libdrm.sh 10 meson build -D vc4=false -D freedreno=false -D etnaviv=false $EXTRA_MESON_ARGS
11 ninja -C build install
build-gfxreconstruct.sh 14 mkdir -p build/bin
15 install _build/tools/replay/gfxrecon-replay build/bin
16 install _build/tools/info/gfxrecon-info build/bin
17 strip build/bin/*
18 find . -not -path './build' -not -path './build/*' -delete
build-hang-detection.sh 12 mkdir -p build/bin
13 install _build/hang-detection build/bin
14 strip build/bin/*
15 find . -not -path './build' -not -path './build/*' -delete
build-va-tools.sh 14 meson build -D tests=true -Dprefix=/va $EXTRA_MESON_ARGS
15 ninja -C build install
  /xsrc/external/mit/libepoxy/dist/.travis/
run-docker.sh 7 sudo docker build \
  /xsrc/external/mit/ctwm/dist/
Makefile 2 all build ctwm man man-html man-all install clean: build/Makefile
3 ( cd build && ${MAKE} ${@} )
6 build/Makefile cmake: CMakeLists.txt
7 ( mkdir -p build && cd build && \
11 rm -rf build/*
21 man-pdf doxygen doxyclean tags: build/Makefile
22 ( cd build && ${MAKE} ${@} )
24 # Make sure everything's build before running test
    [all...]
  /xsrc/external/mit/MesaLib/dist/.gitlab-ci/container/debian/
x86_test-gl.sh 75 ############### Build kernel
83 . .gitlab-ci/container/build-kernel.sh
85 ############### Build libdrm
87 . .gitlab-ci/container/build-libdrm.sh
89 ############### Build libclc
91 . .gitlab-ci/container/build-libclc.sh
93 ############### Build virglrenderer
95 . .gitlab-ci/container/build-virglrenderer.sh
97 ############### Build piglit
99 PIGLIT_OPTS="-DPIGLIT_BUILD_CL_TESTS=ON -DPIGLIT_BUILD_DMA_BUF_TESTS=ON" . .gitlab-ci/container/build-piglit.s
    [all...]
x86_test-vk.sh 123 ############### Build libdrm
125 . .gitlab-ci/container/build-libdrm.sh
127 ############### Build parallel-deqp-runner's hang-detection tool
129 . .gitlab-ci/container/build-hang-detection.sh
131 ############### Build piglit
133 PIGLIT_BUILD_TARGETS="piglit_replayer" . .gitlab-ci/container/build-piglit.sh
135 ############### Build Fossilize
137 . .gitlab-ci/container/build-fossilize.sh
139 ############### Build dEQP VK
141 . .gitlab-ci/container/build-deqp.s
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/compiler/nir/
nir_builder.h 48 nir_builder_init(nir_builder *build, nir_function_impl *impl)
50 memset(build, 0, sizeof(*build));
51 build->exact = false;
52 build->impl = impl;
53 build->shader = impl->function->shader;
128 nir_builder_instr_insert(nir_builder *build, nir_instr *instr)
130 nir_instr_insert(build->cursor, instr);
132 if (build->update_divergence)
133 nir_update_instr_divergence(build->shader, instr)
    [all...]
  /xsrc/external/mit/brotli/dist/python/
Makefile 7 # Default (Build)
9 # Build
10 .PHONY: build
31 all: build
33 build: $(EXTENSIONS)
44 test: build
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/core/
program.hpp 64 struct build { struct in class:clover::program
65 build(const binary &b = {}, const std::string &opts = {}, function in struct:clover::program::build
76 const build &build(const device &dev) const;
88 std::map<const device *, struct build> _builds;
program.cpp 73 return prog.build(dev).bin;
103 program::build::status() const {
113 program::build::binary_type() const {
124 const struct program::build &
125 program::build(const device &dev) const { function in class:program
126 static const struct build null;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/core/core/
program.hpp 61 struct build { struct in class:clover::program
62 build(const module &m = {}, const std::string &opts = {}, function in struct:clover::program::build
73 const build &build(const device &dev) const;
85 std::map<const device *, struct build> _builds;
program.cpp 73 return prog.build(dev).binary;
99 program::build::status() const {
109 program::build::binary_type() const {
120 const struct program::build &
121 program::build(const device &dev) const { function in class:program
122 static const struct build null;
  /xsrc/external/mit/libXau/dist/man/
Makefile.am 39 EXTRA_DIST = $(libman_PRE) meson.build
  /xsrc/external/mit/libXft/dist/
Makefile.am 39 EXTRA_DIST = README.md meson.build meson.options
  /xsrc/external/mit/showfont/dist/
Makefile.am 43 EXTRA_DIST = README.md meson.build
  /xsrc/external/mit/MesaLib/dist/src/freedreno/afuc/
Makefile 56 # Set environment variables for the build.
73 # The top-level build directory on which CMake was run.
149 @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
150 /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
187 cd /home/robclark/src/envytools && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
200 # fast build rule for target.
202 cd /home/robclark/src/envytools && $(MAKE) $(MAKESILENT) -f afuc/CMakeFiles/asm.dir/build.make afuc/CMakeFiles/asm.dir/build
215 # fast build rule for target.
217 cd /home/robclark/src/envytools && $(MAKE) $(MAKESILENT) -f afuc/CMakeFiles/disasm.dir/build.make afuc/CMakeFiles/disasm.dir/buil
    [all...]

Completed in 23 milliseconds

1 2 3 4 5 6 7 8 91011>>