HomeSort by relevance Sort by last modified time
    Searched refs:dstw (Results 1 - 15 of 15) sorted by null

  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_yuv.c 87 int dstx, dsty, dstw, dsth; local
101 dstw = dstrect->w;
105 dstw += dstx;
109 if ( (dstx+dstw) > current_video->screen->w ) {
110 int extra = (dstx+dstw - current_video->screen->w);
112 dstw -= extra;
136 dst.w = dstw;
  /external/pcre/dist/sljit/
sljitNativeSPARC_common.c 648 sljit_si dst, sljit_sw dstw,
676 else if ((dst & SLJIT_MEM) && !getput_arg_fast(compiler, flags | ARG_TEST, TMP_REG1, dst, dstw))
749 if (!can_cache(src1, src1w, src2, src2w) && can_cache(src1, src1w, dst, dstw)) {
751 FAIL_IF(getput_arg(compiler, flags | LOAD_DATA, TMP_REG1, src1, src1w, dst, dstw));
755 FAIL_IF(getput_arg(compiler, flags | LOAD_DATA, TMP_REG2, src2, src2w, dst, dstw));
759 FAIL_IF(getput_arg(compiler, flags | LOAD_DATA, TMP_REG1, src1, src1w, dst, dstw));
761 FAIL_IF(getput_arg(compiler, flags | LOAD_DATA, sugg_src2_r, src2, src2w, dst, dstw));
767 getput_arg_fast(compiler, flags, dst_r, dst, dstw);
770 return getput_arg(compiler, flags, dst_r, dst, dstw, 0, 0);
818 sljit_si dst, sljit_sw dstw,
    [all...]
sljitNativeX86_common.c 567 sljit_si dst, sljit_sw dstw,
573 sljit_si dst, sljit_sw dstw,
578 sljit_si dst, sljit_sw dstw,
652 sljit_si dst, sljit_sw dstw,
667 inst = emit_x86_instruction(compiler, 1, src, 0, dst, dstw);
688 inst = emit_x86_instruction(compiler, 1, TMP_REG2, 0, dst, dstw);
694 inst = emit_x86_instruction(compiler, 1, SLJIT_IMM, srcw, dst, dstw);
710 inst = emit_x86_instruction(compiler, 1, TMP_REG1, 0, dst, dstw);
716 #define EMIT_MOV(compiler, dst, dstw, src, srcw) \
717 FAIL_IF(emit_mov(compiler, dst, dstw, src, srcw))
    [all...]
sljitLir.c 972 static SLJIT_INLINE void check_sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw)
977 SLJIT_UNUSED_ARG(dstw);
980 FUNCTION_CHECK_DST(dst, dstw);
985 sljit_verbose_param(compiler, dst, dstw);
1026 sljit_si dst, sljit_sw dstw,
1033 SLJIT_UNUSED_ARG(dstw);
1048 FUNCTION_CHECK_DST(dst, dstw);
    [all...]
sljitNativePPC_common.c     [all...]
sljitNativeMIPS_common.c 913 sljit_si dst, sljit_sw dstw,
943 else if ((dst & SLJIT_MEM) && !getput_arg_fast(compiler, flags | ARG_TEST, DR(TMP_REG1), dst, dstw))
    [all...]
sljitNativeARM_T2_32.c     [all...]
sljitNativeARM_64.c     [all...]
sljitNativeARM_32.c 822 sljit_si dst, sljit_sw dstw,
    [all...]
sljitNativeTILEGX_64.c     [all...]
sljitLir.h 527 dst/dstw by sljit_emit_fast_enter (the type of the value stored by this function
540 SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw);
    [all...]
sljitNativeX86_64.c 605 SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw)
610 check_sljit_emit_fast_enter(compiler, dst, dstw);
611 ADJUST_LOCAL_OFFSET(dst, dstw);
636 inst = emit_x86_instruction(compiler, 1, 0, 0, dst, dstw);
706 sljit_si dst, sljit_sw dstw,
720 inst = emit_x86_instruction(compiler, 1, SLJIT_IMM, (sljit_sw)(sljit_si)srcw, dst, dstw);
728 inst = emit_x86_instruction(compiler, 1, SLJIT_IMM, (sljit_sw)(sljit_si)srcw, dst, dstw);
753 inst = emit_x86_instruction(compiler, 1, dst_r, 0, dst, dstw);
sljitNativeX86_32.c 458 SLJIT_API_FUNC_ATTRIBUTE sljit_si sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_si dst, sljit_sw dstw)
463 check_sljit_emit_fast_enter(compiler, dst, dstw);
464 ADJUST_LOCAL_OFFSET(dst, dstw);
466 CHECK_EXTRA_REGS(dst, dstw, (void)0);
483 inst = emit_x86_instruction(compiler, 1, 0, 0, dst, dstw);
  /external/qemu/distrib/sdl-1.2.15/test/
testblitspeed.c 197 int dstw = 640; local
231 dstw = atoi(argv[++i]);
284 dest = SDL_SetVideoMode(dstw, dsth, dstbpp, dstflags);
287 dest = SDL_CreateRGBSurface(dstflags, dstw, dsth, dstbpp,
  /external/pcre/dist/
pcre_jit_compile.c 523 #define OP1(op, dst, dstw, src, srcw) \
524 sljit_emit_op1(compiler, (op), (dst), (dstw), (src), (srcw))
525 #define OP2(op, dst, dstw, src1, src1w, src2, src2w) \
526 sljit_emit_op2(compiler, (op), (dst), (dstw), (src1), (src1w), (src2), (src2w))
541 #define OP_FLAGS(op, dst, dstw, src, srcw, type) \
542 sljit_emit_op_flags(compiler, (op), (dst), (dstw), (src), (srcw), (type))
543 #define GET_LOCAL_BASE(dst, dstw, offset) \
544 sljit_get_local_base(compiler, (dst), (dstw), (offset))
    [all...]

Completed in 518 milliseconds