HomeSort by relevance Sort by last modified time
    Searched refs:compiler (Results 51 - 75 of 3285) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/perfetto/src/ipc/protoc_plugin/
ipc_plugin.cc 17 #include "google/protobuf/compiler/plugin.h"
22 return google::protobuf::compiler::PluginMain(argc, argv, &generator);
  /external/perfetto/src/protozero/protoc_plugin/
protozero_plugin.cc 17 #include "google/protobuf/compiler/plugin.h"
22 return google::protobuf::compiler::PluginMain(argc, argv, &generator);
  /external/syslinux/com32/elflink/ldlinux/
advwrite.c 34 #include <klibc/compiler.h>
  /external/syslinux/com32/include/sys/
types.h 8 #include <klibc/compiler.h>
  /external/syslinux/com32/lib/syslinux/
dsinfo.c 30 #include <klibc/compiler.h>
  /external/v8/src/compiler/
store-store-elimination.h 8 #include "src/compiler/common-operator.h"
9 #include "src/compiler/js-graph.h"
14 namespace compiler { namespace in namespace:v8::internal
21 } // namespace compiler
type-cache.cc 5 #include "src/compiler/type-cache.h"
11 namespace compiler { namespace in namespace:v8::internal
22 } // namespace compiler
  /frameworks/av/media/libeffects/factory/
EffectsXmlConfigLoader.h 22 #include <cutils/compiler.h>
  /frameworks/native/opengl/libs/EGL/include/private/EGL/
display.h 21 #include <cutils/compiler.h>
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mmix/
locall1.s 1 % Get rid of labels that look compiler-generated, matching: "L.*:[0-9]+".
  /external/pcre/dist2/src/sljit/
sljitNativeARM_64.c 2 * Stack-less Just-In-Time compiler
127 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins)
129 sljit_ins *ptr = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins));
132 compiler->size++;
136 static SLJIT_INLINE sljit_s32 emit_imm64_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_uw imm)
138 FAIL_IF(push_inst(compiler, MOVZ | RD(dst) | ((imm & 0xffff) << 5)));
139 FAIL_IF(push_inst(compiler, MOVK | RD(dst) | (((imm >> 16) & 0xffff) << 5) | (1 << 21)));
140 FAIL_IF(push_inst(compiler, MOVK | RD(dst) | (((imm >> 32) & 0xffff) << 5) | (2 << 21)));
141 return push_inst(compiler, MOVK | RD(dst) | ((imm >> 48) << 5) | (3 << 21));
206 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler)
    [all...]
sljitNativeSPARC_common.c 2 * Stack-less Just-In-Time compiler
188 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins, sljit_s32 delay_slot)
194 ptr = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins));
197 compiler->size++;
198 compiler->delay_slot = delay_slot;
275 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler)
290 CHECK_PTR(check_sljit_generate_code(compiler));
291 reverse_buf(compiler);
293 code = (sljit_ins*)SLJIT_MALLOC_EXEC(compiler->size * sizeof(sljit_ins));
295 buf = compiler->buf
    [all...]
sljitNativePPC_64.c 2 * Stack-less Just-In-Time compiler
42 push_inst(compiler, RLDI(reg, reg, 63 - shift, shift, 1))
44 static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 reg, sljit_sw imm)
52 return push_inst(compiler, ADDI | D(reg) | A(0) | IMM(imm));
55 return push_inst(compiler, ORI | S(TMP_ZERO) | A(reg) | IMM(imm));
58 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(imm >> 16)));
59 return (imm & 0xffff) ? push_inst(compiler, ORI | S(reg) | A(reg) | IMM(imm)) : SLJIT_SUCCESS;
70 FAIL_IF(push_inst(compiler, ADDI | D(reg) | A(0) | IMM(tmp >> 48)));
76 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(tmp >> 48)));
77 FAIL_IF(push_inst(compiler, ORI | S(reg) | A(reg) | IMM(tmp >> 32)))
    [all...]
  /art/test/159-app-image-fields/
run 18 # Also run the compiler with -j1 to ensure specific class verification order.
19 exec ${RUN} $@ --profile -Xcompiler-option --compiler-filter=speed-profile \
  /art/test/163-app-image-methods/
run 18 # Also run the compiler with -j1 to ensure specific class verification order.
19 exec ${RUN} $@ --profile -Xcompiler-option --compiler-filter=speed-profile \
  /art/test/164-resolution-trampoline-dex-cache/
run 18 # Make sure we compile the required method using speed-profile compiler filter.
19 # Enable JIT through runtime option to avoid the compiler filter set by --jit.
21 -Xcompiler-option --compiler-filter=speed-profile --profile \
  /external/javassist/src/main/javassist/compiler/
NoFieldException.java 16 package javassist.compiler;
18 import javassist.compiler.ast.ASTree;
ProceedHandler.java 16 package javassist.compiler;
19 import javassist.compiler.ast.ASTList;
24 * @see javassist.compiler.JvstCodeGen#setProceedHandler(ProceedHandler, String)
25 * @see javassist.compiler.JvstCodeGen#atMethodCall(Expr)
  /external/javassist/src/main/javassist/compiler/ast/
Keyword.java 16 package javassist.compiler.ast;
18 import javassist.compiler.CompileError;
Member.java 16 package javassist.compiler.ast;
18 import javassist.compiler.CompileError;
StringL.java 16 package javassist.compiler.ast;
18 import javassist.compiler.CompileError;
Symbol.java 16 package javassist.compiler.ast;
18 import javassist.compiler.CompileError;
Variable.java 16 package javassist.compiler.ast;
18 import javassist.compiler.CompileError;
  /external/mesa3d/src/gallium/drivers/freedreno/ir3/
ir3_compiler.h 44 void ir3_compiler_destroy(struct ir3_compiler *compiler);
46 int ir3_compile_shader_nir(struct ir3_compiler *compiler,
  /external/perf_data_converter/src/quipper/
install_prerequisites.sh 6 readonly PREREQS=(build-essential protobuf-compiler libprotobuf-dev openssl \

Completed in 1466 milliseconds

1 23 4 5 6 7 8 91011>>