Searched refs:compiler (Results 51 - 75 of 1394) sorted by relevance

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/include/asm-generic/
H A Dgetorder.h6 #include <linux/compiler.h>
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/include/linux/
H A Dahci_platform.h18 #include <linux/compiler.h>
H A Divtvfb.h24 #include <linux/compiler.h>
H A Dstackprotector.h4 #include <linux/compiler.h>
H A Dtrace_clock.h12 #include <linux/compiler.h>
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-armeabi-2013.11/arm-none-eabi/include/c++/4.8.1/bits/
H A Dc++0x_warning.h32 #error This file requires compiler and library support for the \
34 enabled with the -std=c++11 or -std=gnu++11 compiler options.
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-armeabi-2011.09/arm-none-eabi/include/c++/4.6.1/bits/
H A Dc++0x_warning.h32 #error This file requires compiler and library support for the upcoming \
34 enabled with the -std=c++0x or -std=gnu++0x compiler options.
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/arm-linux/include/c++/4.5.3/bits/
H A Dc++0x_warning.h31 #error This file requires compiler and library support for the upcoming \
33 enabled with the -std=c++0x or -std=gnu++0x compiler options.
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/arm-brcm-linux-uclibcgnueabi/include/c++/4.5.3/bits/
H A Dc++0x_warning.h31 #error This file requires compiler and library support for the upcoming \
33 enabled with the -std=c++0x or -std=gnu++0x compiler options.
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/gdb/gdb/testsuite/lib/
H A Dada.exp65 set compiler ""
87 set compiler [target_info gnatmake];
89 set compiler [find_gnatmake];
99 if [board_info $dest exists c++compiler] {
100 set compiler [target_info c++compiler];
102 set compiler [find_g++];
113 set compiler [target_info f77compiler]
115 set compiler [find_g77]
127 if [regexp "^compiler
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/gdb/gdb/testsuite/lib/
H A Dada.exp65 set compiler ""
87 set compiler [target_info gnatmake];
89 set compiler [find_gnatmake];
99 if [board_info $dest exists c++compiler] {
100 set compiler [target_info c++compiler];
102 set compiler [find_g++];
113 set compiler [target_info f77compiler]
115 set compiler [find_g77]
127 if [regexp "^compiler
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/gdb/gdb/testsuite/lib/
H A Dada.exp65 set compiler ""
87 set compiler [target_info gnatmake];
89 set compiler [find_gnatmake];
99 if [board_info $dest exists c++compiler] {
100 set compiler [target_info c++compiler];
102 set compiler [find_g++];
113 set compiler [target_info f77compiler]
115 set compiler [find_g77]
127 if [regexp "^compiler
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/pcre-8.31/sljit/
H A DsljitNativeX86_64.c2 * Stack-less Just-In-Time compiler
29 static int emit_load_imm64(struct sljit_compiler *compiler, int reg, sljit_w imm) argument
33 buf = (sljit_ub*)ensure_buf(compiler, 1 + 2 + sizeof(sljit_w));
89 SLJIT_API_FUNC_ATTRIBUTE int sljit_emit_enter(struct sljit_compiler *compiler, int args, int temporaries, int saveds, int local_size) argument
95 check_sljit_emit_enter(compiler, args, temporaries, saveds, local_size);
97 compiler->temporaries = temporaries;
98 compiler->saveds = saveds;
99 compiler->flags_saved = 0;
101 compiler->logical_local_size = local_size;
120 buf = (sljit_ub*)ensure_buf(compiler,
247 sljit_set_context(struct sljit_compiler *compiler, int args, int temporaries, int saveds, int local_size) argument
269 sljit_emit_return(struct sljit_compiler *compiler, int op, int src, sljit_w srcw) argument
353 emit_do_imm32(struct sljit_compiler *compiler, sljit_ub rex, sljit_ub opcode, sljit_w imm) argument
375 emit_x86_instruction(struct sljit_compiler *compiler, int size, int a, sljit_w imma, int b, sljit_w immb) argument
597 call_with_args(struct sljit_compiler *compiler, int type) argument
633 sljit_emit_fast_enter(struct sljit_compiler *compiler, int dst, sljit_w dstw) argument
672 sljit_emit_fast_return(struct sljit_compiler *compiler, int src, sljit_w srcw) argument
735 emit_mov_int(struct sljit_compiler *compiler, int sign, int dst, sljit_w dstw, int src, sljit_w srcw) argument
[all...]
H A DsljitLir.h2 * Stack-less Just-In-Time compiler
32 Stack-Less JIT compiler for multiple architectures (x86, ARM, PowerPC)
44 - The compiler is thread-safe
45 - The compiler is highly configurable through preprocessor macros.
84 /* After the call of sljit_generate_code(), the error code of the compiler
281 /* Creates an sljit compiler.
285 SLJIT_API_FUNC_ATTRIBUTE void sljit_free_compiler(struct sljit_compiler *compiler);
287 static SLJIT_INLINE int sljit_get_compiler_error(struct sljit_compiler *compiler) { return compiler->error; } argument
291 and <= 128 bytes on 64 bit architectures. The memory area is owned by the compiler,
316 sljit_get_generated_code_size(struct sljit_compiler *compiler) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/pcre-8.31/sljit/
H A DsljitNativeX86_64.c2 * Stack-less Just-In-Time compiler
29 static int emit_load_imm64(struct sljit_compiler *compiler, int reg, sljit_w imm) argument
33 buf = (sljit_ub*)ensure_buf(compiler, 1 + 2 + sizeof(sljit_w));
89 SLJIT_API_FUNC_ATTRIBUTE int sljit_emit_enter(struct sljit_compiler *compiler, int args, int temporaries, int saveds, int local_size) argument
95 check_sljit_emit_enter(compiler, args, temporaries, saveds, local_size);
97 compiler->temporaries = temporaries;
98 compiler->saveds = saveds;
99 compiler->flags_saved = 0;
101 compiler->logical_local_size = local_size;
120 buf = (sljit_ub*)ensure_buf(compiler,
247 sljit_set_context(struct sljit_compiler *compiler, int args, int temporaries, int saveds, int local_size) argument
269 sljit_emit_return(struct sljit_compiler *compiler, int op, int src, sljit_w srcw) argument
353 emit_do_imm32(struct sljit_compiler *compiler, sljit_ub rex, sljit_ub opcode, sljit_w imm) argument
375 emit_x86_instruction(struct sljit_compiler *compiler, int size, int a, sljit_w imma, int b, sljit_w immb) argument
597 call_with_args(struct sljit_compiler *compiler, int type) argument
633 sljit_emit_fast_enter(struct sljit_compiler *compiler, int dst, sljit_w dstw) argument
672 sljit_emit_fast_return(struct sljit_compiler *compiler, int src, sljit_w srcw) argument
735 emit_mov_int(struct sljit_compiler *compiler, int sign, int dst, sljit_w dstw, int src, sljit_w srcw) argument
[all...]
H A DsljitLir.h2 * Stack-less Just-In-Time compiler
32 Stack-Less JIT compiler for multiple architectures (x86, ARM, PowerPC)
44 - The compiler is thread-safe
45 - The compiler is highly configurable through preprocessor macros.
84 /* After the call of sljit_generate_code(), the error code of the compiler
281 /* Creates an sljit compiler.
285 SLJIT_API_FUNC_ATTRIBUTE void sljit_free_compiler(struct sljit_compiler *compiler);
287 static SLJIT_INLINE int sljit_get_compiler_error(struct sljit_compiler *compiler) { return compiler->error; } argument
291 and <= 128 bytes on 64 bit architectures. The memory area is owned by the compiler,
316 sljit_get_generated_code_size(struct sljit_compiler *compiler) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/pcre-8.31/sljit/
H A DsljitNativeX86_64.c2 * Stack-less Just-In-Time compiler
29 static int emit_load_imm64(struct sljit_compiler *compiler, int reg, sljit_w imm) argument
33 buf = (sljit_ub*)ensure_buf(compiler, 1 + 2 + sizeof(sljit_w));
89 SLJIT_API_FUNC_ATTRIBUTE int sljit_emit_enter(struct sljit_compiler *compiler, int args, int temporaries, int saveds, int local_size) argument
95 check_sljit_emit_enter(compiler, args, temporaries, saveds, local_size);
97 compiler->temporaries = temporaries;
98 compiler->saveds = saveds;
99 compiler->flags_saved = 0;
101 compiler->logical_local_size = local_size;
120 buf = (sljit_ub*)ensure_buf(compiler,
247 sljit_set_context(struct sljit_compiler *compiler, int args, int temporaries, int saveds, int local_size) argument
269 sljit_emit_return(struct sljit_compiler *compiler, int op, int src, sljit_w srcw) argument
353 emit_do_imm32(struct sljit_compiler *compiler, sljit_ub rex, sljit_ub opcode, sljit_w imm) argument
375 emit_x86_instruction(struct sljit_compiler *compiler, int size, int a, sljit_w imma, int b, sljit_w immb) argument
597 call_with_args(struct sljit_compiler *compiler, int type) argument
633 sljit_emit_fast_enter(struct sljit_compiler *compiler, int dst, sljit_w dstw) argument
672 sljit_emit_fast_return(struct sljit_compiler *compiler, int src, sljit_w srcw) argument
735 emit_mov_int(struct sljit_compiler *compiler, int sign, int dst, sljit_w dstw, int src, sljit_w srcw) argument
[all...]
H A DsljitLir.h2 * Stack-less Just-In-Time compiler
32 Stack-Less JIT compiler for multiple architectures (x86, ARM, PowerPC)
44 - The compiler is thread-safe
45 - The compiler is highly configurable through preprocessor macros.
84 /* After the call of sljit_generate_code(), the error code of the compiler
281 /* Creates an sljit compiler.
285 SLJIT_API_FUNC_ATTRIBUTE void sljit_free_compiler(struct sljit_compiler *compiler);
287 static SLJIT_INLINE int sljit_get_compiler_error(struct sljit_compiler *compiler) { return compiler->error; } argument
291 and <= 128 bytes on 64 bit architectures. The memory area is owned by the compiler,
316 sljit_get_generated_code_size(struct sljit_compiler *compiler) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/alpha/include/asm/
H A Dswab.h5 #include <linux/compiler.h>
6 #include <asm/compiler.h>
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/alpha/include/asm/
H A Dswab.h5 #include <linux/compiler.h>
6 #include <asm/compiler.h>
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/include/asm-generic/bitops/
H A Dsched.h4 #include <linux/compiler.h> /* unlikely() */
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/include/asm-generic/
H A Dsignal-defs.h4 #include <linux/compiler.h>
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/include/linux/
H A Dblkpg.h27 #include <linux/compiler.h>
H A Dstddef.h4 #include <linux/compiler.h>
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/include/linux/mtd/
H A Dxip.h26 #include <linux/compiler.h>

Completed in 295 milliseconds

1234567891011>>