/system/core/sh/ |
Android.mk | 6 arith.c \ 44 p4 edit arith.c arith_lex.c arith.h builtins.h builtins.c 47 bison -o arith.c arith.y 49 perl -ne 'print if ( /^\#\s*define\s+ARITH/ );' < arith.c > arith.h
|
expand.h | 68 /* From arith.y */ 69 int arith(const char *);
|
arith.y | 2 /* $NetBSD: arith.y,v 1.17 2003/09/17 17:33:36 jmmv Exp $ */ 39 static char sccsid[] = "@(#)arith.y 8.3 (Berkeley) 5/4/95"; 41 __RCSID("$NetBSD: arith.y,v 1.17 2003/09/17 17:33:36 jmmv Exp $"); 117 arith(s) 167 i = arith(p);
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/ |
nvfx_fragprog.c | 228 #define arith(s,o,d,m,s0,s1,s2) \ macro 241 struct nvfx_insn insn = arith(0, MOV, none.reg, NVFX_FP_MASK_X, src, none, none); 483 nvfx_fp_emit(fpc, arith(0, ADD, src[i].reg, NVFX_FP_MASK_ALL, tgsi_src(fpc, fsrc), addend, none)); 489 nvfx_fp_emit(fpc, arith(0, MOV, src[i].reg, NVFX_FP_MASK_ALL, tgsi_src(fpc, fsrc), none, none)); 499 nvfx_fp_emit(fpc, arith(0, MOV, src[i].reg, NVFX_FP_MASK_ALL, tgsi_src(fpc, fsrc), none, none)); 509 nvfx_fp_emit(fpc, arith(0, MOV, src[i].reg, NVFX_FP_MASK_ALL, tgsi_src(fpc, fsrc), none, none)); 532 nvfx_fp_emit(fpc, arith(sat, MOV, dst, mask, abs(src[0]), none, none)); 535 nvfx_fp_emit(fpc, arith(sat, ADD, dst, mask, src[0], src[1], none)); 539 nvfx_fp_emit(fpc, arith(0, FLR, tmp.reg, mask, neg(src[0]), none, none)); 540 nvfx_fp_emit(fpc, arith(sat, MOV, dst, mask, neg(tmp), none, none)) [all...] |
nvfx_vertprog.c | 22 * - extra arith opcodes 113 #define arith(s,t,o,d,m,s0,s1,s2) \ macro 495 nvfx_vp_emit(vpc, arith(0, VEC, MOV, src[i].reg, NVFX_VP_MASK_ALL, 506 nvfx_vp_emit(vpc, arith(0, VEC, MOV, src[i].reg, NVFX_VP_MASK_ALL, 517 nvfx_vp_emit(vpc, arith(0, VEC, MOV, src[i].reg, NVFX_VP_MASK_ALL, 552 nvfx_vp_emit(vpc, arith(sat, VEC, MOV, dst, mask, abs(src[0]), none, none)); 555 nvfx_vp_emit(vpc, arith(sat, VEC, ADD, dst, mask, src[0], none, src[1])); 558 nvfx_vp_emit(vpc, arith(0, VEC, ARL, dst, mask, src[0], none, none)); 562 nvfx_vp_emit(vpc, arith(0, VEC, FLR, tmp.reg, mask, neg(src[0]), none, none)); 563 nvfx_vp_emit(vpc, arith(sat, VEC, MOV, dst, mask, neg(tmp), none, none)) [all...] |
/external/mesa3d/src/gallium/drivers/nv30/ |
nvfx_fragprog.c | 228 #define arith(s,o,d,m,s0,s1,s2) \ macro 241 struct nvfx_insn insn = arith(0, MOV, none.reg, NVFX_FP_MASK_X, src, none, none); 483 nvfx_fp_emit(fpc, arith(0, ADD, src[i].reg, NVFX_FP_MASK_ALL, tgsi_src(fpc, fsrc), addend, none)); 489 nvfx_fp_emit(fpc, arith(0, MOV, src[i].reg, NVFX_FP_MASK_ALL, tgsi_src(fpc, fsrc), none, none)); 499 nvfx_fp_emit(fpc, arith(0, MOV, src[i].reg, NVFX_FP_MASK_ALL, tgsi_src(fpc, fsrc), none, none)); 509 nvfx_fp_emit(fpc, arith(0, MOV, src[i].reg, NVFX_FP_MASK_ALL, tgsi_src(fpc, fsrc), none, none)); 532 nvfx_fp_emit(fpc, arith(sat, MOV, dst, mask, abs(src[0]), none, none)); 535 nvfx_fp_emit(fpc, arith(sat, ADD, dst, mask, src[0], src[1], none)); 539 nvfx_fp_emit(fpc, arith(0, FLR, tmp.reg, mask, neg(src[0]), none, none)); 540 nvfx_fp_emit(fpc, arith(sat, MOV, dst, mask, neg(tmp), none, none)) [all...] |
nvfx_vertprog.c | 22 * - extra arith opcodes 113 #define arith(s,t,o,d,m,s0,s1,s2) \ macro 495 nvfx_vp_emit(vpc, arith(0, VEC, MOV, src[i].reg, NVFX_VP_MASK_ALL, 506 nvfx_vp_emit(vpc, arith(0, VEC, MOV, src[i].reg, NVFX_VP_MASK_ALL, 517 nvfx_vp_emit(vpc, arith(0, VEC, MOV, src[i].reg, NVFX_VP_MASK_ALL, 552 nvfx_vp_emit(vpc, arith(sat, VEC, MOV, dst, mask, abs(src[0]), none, none)); 555 nvfx_vp_emit(vpc, arith(sat, VEC, ADD, dst, mask, src[0], none, src[1])); 558 nvfx_vp_emit(vpc, arith(0, VEC, ARL, dst, mask, src[0], none, none)); 562 nvfx_vp_emit(vpc, arith(0, VEC, FLR, tmp.reg, mask, neg(src[0]), none, none)); 563 nvfx_vp_emit(vpc, arith(sat, VEC, MOV, dst, mask, neg(tmp), none, none)) [all...] |
/external/chromium_org/third_party/skia/src/effects/ |
SkArithmeticMode.cpp | 71 static int arith(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4, function 111 a = arith(k1, k2, k3, k4, sa, da); 112 r = arith(k1, k2, k3, k4, SkGetPackedR32(sc), SkGetPackedR32(dc)); 113 g = arith(k1, k2, k3, k4, SkGetPackedG32(sc), SkGetPackedG32(dc)); 114 b = arith(k1, k2, k3, k4, SkGetPackedB32(sc), SkGetPackedB32(dc)); 136 a = arith(k1, k2, k3, k4, sa, da); 137 r = arith(k1, k2, k3, k4, sr, dr); 138 g = arith(k1, k2, k3, k4, sg, dg); 139 b = arith(k1, k2, k3, k4, sb, db); 142 a = arith(k1, k2, k3, k4, SkGetPackedA32(sc), SkGetPackedA32(dc)) 392 const GrArithmeticEffect& arith = drawEffect.castEffect<GrArithmeticEffect>(); local [all...] |
/external/skia/src/effects/ |
SkArithmeticMode.cpp | 71 static int arith(SkScalar k1, SkScalar k2, SkScalar k3, SkScalar k4, function 111 a = arith(k1, k2, k3, k4, sa, da); 112 r = arith(k1, k2, k3, k4, SkGetPackedR32(sc), SkGetPackedR32(dc)); 113 g = arith(k1, k2, k3, k4, SkGetPackedG32(sc), SkGetPackedG32(dc)); 114 b = arith(k1, k2, k3, k4, SkGetPackedB32(sc), SkGetPackedB32(dc)); 136 a = arith(k1, k2, k3, k4, sa, da); 137 r = arith(k1, k2, k3, k4, sr, dr); 138 g = arith(k1, k2, k3, k4, sg, dg); 139 b = arith(k1, k2, k3, k4, sb, db); 142 a = arith(k1, k2, k3, k4, SkGetPackedA32(sc), SkGetPackedA32(dc)) 392 const GrArithmeticEffect& arith = drawEffect.castEffect<GrArithmeticEffect>(); local [all...] |
/external/yaffs2/ |
Android.mk | 13 LOCAL_CFLAGS+= -Wshadow -Wpointer-arith -Wwrite-strings -Wstrict-prototypes -Wmissing-declarations
|
/external/grub/ |
Android.mk | 31 -Wpointer-arith -falign-jumps=1 -falign-loops=1 \ 87 -Wpointer-arith -falign-jumps=1 -falign-loops=1 \ 124 -Wpointer-arith -falign-jumps=1 -falign-loops=1 \
|
/external/elfutils/libdwfl/ |
Android.mk | 60 LOCAL_CFLAGS += -Wno-pointer-arith 97 LOCAL_CFLAGS += -Wno-pointer-arith
|
/external/yaffs2/yaffs2/utils/ |
Makefile | 20 CFLAGS+= -Wshadow -Wpointer-arith -Wwrite-strings -Wstrict-prototypes -Wmissing-declarations
|
/external/mksh/src/ |
expr.c | 156 bool arith; member in struct:expr_state 183 evaluate(const char *expr, mksh_ari_t *rval, int error_ok, bool arith) 190 ret = v_evaluate(&v, expr, error_ok, arith); 200 bool arith) 211 curstate.arith = arith; 238 if (es->arith && es->natural) 241 setint_v(vp, v, es->arith); 257 es->arith = false; 505 setint_v(vasn, vr, es->arith); [all...] |
var.c | 474 getint(struct tbl *vp, mksh_ari_t *nump, bool arith) 494 if (arith && s[0] == '0' && (s[1] | 0x20) == 'x') { 500 if (arith && s[0] == '0' && ksh_isdigit(s[1]) && 555 setint_v(struct tbl *vq, struct tbl *vp, bool arith) 560 if ((base = getint(vp, &num, arith)) == -1) [all...] |
/external/linux-tools-perf/ |
Android.mk | 106 LOCAL_CFLAGS += -Wno-pointer-arith 141 LOCAL_CFLAGS += -Wno-pointer-arith 205 LOCAL_CFLAGS += -Wno-pointer-arith 248 LOCAL_CFLAGS += -Wno-pointer-arith
|
/external/elfutils/libelf/ |
Android.mk | 152 LOCAL_CFLAGS += -Wno-pointer-arith 183 LOCAL_CFLAGS += -Wno-pointer-arith
|
/external/valgrind/main/drd/scripts/ |
download-and-build-splash2.in | 91 CFLAGS := \$(CFLAGS) -Wpadded -Winline -Wpointer-arith -Wsign-compare -Wendif-labels 93 CFLAGS := \$(CFLAGS) -Wpadded -Winline -Wpointer-arith -Wsign-compare -Wendif-labels
|
/external/skia/gm/ |
imagefiltersgraph.cpp | 164 SkAutoTUnref<SkXfermode> arith(SkArithmeticMode::Create(0, SK_Scalar1, SK_Scalar1, 0)); 165 SkXfermodeImageFilter arithFilter(arith, matrixFilter, &offsetFilter);
|
/external/elfutils/libdw/ |
Android.mk | 165 LOCAL_CFLAGS += -Wno-pointer-arith
|
/external/oprofile/events/i386/westmere/ |
events | 23 event:0x14 counters:0,1,2,3 um:arith minimum:2000000 name:ARITH : Cycles the divider is busy
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/ |
genopcode.asm | 83 ;; TODO: add arith stuff
|
/packages/inputmethods/LatinIME/native/jni/ |
Android.mk | 31 -Wwrite-strings -Wfloat-equal -Wpointer-arith -Winit-self -Wredundant-decls -Wno-system-headers
|
/ndk/sources/host-tools/nawk-20071023/ |
proto.h | 174 extern Cell *arith(Node **, int);
|
/external/libvpx/libvpx/ |
configure | 604 check_add_cflags -Wpointer-arith 626 check_add_cflags -Wpointer-arith
|