OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TCGCond
(Results
1 - 6
of
6
) sorted by null
/external/qemu/tcg/
tcg.h
218
}
TCGCond
;
221
static inline
TCGCond
tcg_invert_cond(
TCGCond
c)
223
return (
TCGCond
)(c ^ 1);
227
static inline
TCGCond
tcg_swap_cond(
TCGCond
c)
230
return (
TCGCond
)(c ^ mask);
233
static inline
TCGCond
tcg_unsigned_cond(
TCGCond
c)
tcg-op.h
627
static inline void tcg_gen_brcond_i32(
TCGCond
cond, TCGv_i32 arg1,
633
static inline void tcg_gen_brcondi_i32(
TCGCond
cond, TCGv_i32 arg1,
641
static inline void tcg_gen_setcond_i32(
TCGCond
cond, TCGv_i32 ret,
647
static inline void tcg_gen_setcondi_i32(
TCGCond
cond, TCGv_i32 ret,
971
static inline void tcg_gen_brcond_i64(
TCGCond
cond, TCGv_i64 arg1,
979
static inline void tcg_gen_setcond_i64(
TCGCond
cond, TCGv_i64 ret,
[
all
...]
/external/qemu/tcg/sparc/
tcg-target.c
523
static void tcg_out_brcond_i32(TCGContext *s,
TCGCond
cond,
533
static void tcg_out_brcond_i64(TCGContext *s,
TCGCond
cond,
542
static void tcg_out_brcond2_i32(TCGContext *s,
TCGCond
cond,
590
static void tcg_out_setcond_i32(TCGContext *s,
TCGCond
cond, TCGArg ret,
646
static void tcg_out_setcond_i64(TCGContext *s,
TCGCond
cond, TCGArg ret,
656
static void tcg_out_setcond2_i32(TCGContext *s,
TCGCond
cond, TCGArg ret,
[
all
...]
/external/qemu/tcg/i386/
tcg-target.c
777
static void tcg_out_brcond32(TCGContext *s,
TCGCond
cond,
786
static void tcg_out_brcond64(TCGContext *s,
TCGCond
cond,
877
static void tcg_out_setcond32(TCGContext *s,
TCGCond
cond, TCGArg dest,
886
static void tcg_out_setcond64(TCGContext *s,
TCGCond
cond, TCGArg dest,
[
all
...]
/external/qemu/tcg/ppc/
tcg-target.c
1081
TCGCond
cond = args[4];
1122
static void tcg_out_setcond (TCGContext *s,
TCGCond
cond, TCGArg arg0,
[
all
...]
/external/qemu/tcg/ppc64/
tcg-target.c
1049
static void tcg_out_setcond (TCGContext *s, TCGType type,
TCGCond
cond,
1181
static void tcg_out_brcond (TCGContext *s,
TCGCond
cond,
[
all
...]
Completed in 28 milliseconds