HomeSort by relevance Sort by last modified time
    Searched refs:src (Results 126 - 150 of 4227) sorted by null

1 2 3 4 56 7 8 91011>>

  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/filters/
GrayscaleFilter.java 31 public void process(Photo src, Photo dst) {
33 src.texture(), src.width(), src.height(), dst.texture());
LomoishFilter.java 31 public void process(Photo src, Photo dst) {
33 src.texture(), src.width(), src.height(), dst.texture());
NegativeFilter.java 31 public void process(Photo src, Photo dst) {
33 src.texture(), src.width(), src.height(), dst.texture());
PosterizeFilter.java 31 public void process(Photo src, Photo dst) {
33 src.texture(), src.width(), src.height(), dst.texture());
SepiaFilter.java 31 public void process(Photo src, Photo dst) {
33 src.texture(), src.width(), src.height(), dst.texture());
  /sdk/swtmenubar/
Android.mk 19 LOCAL_SRC_FILES := $(call all-java-files-under, src)
20 LOCAL_JAVA_RESOURCE_DIRS := src
23 LOCAL_SRC_FILES += $(call all-java-files-under, src-$(HOST_OS))
24 LOCAL_JAVA_RESOURCE_DIRS += src-$(HOST_OS)
  /external/qemu/distrib/sdl-1.2.12/src/audio/
SDL_audiocvt.c 41 Uint8 *src, *dst; local
43 src = cvt->buf;
46 sample = src[0] + src[1];
48 src += 2;
55 Sint8 *src, *dst; local
57 src = (Sint8 *)cvt->buf;
60 sample = src[0] + src[1];
62 src += 2
69 Uint8 *src, *dst; local
100 Uint8 *src, *dst; local
148 Uint8 *src, *dst; local
162 Sint8 *src, *dst; local
176 Uint8 *src, *dst; local
211 Uint8 *src, *dst; local
264 Uint8 *src, *dst; local
278 Sint8 *src, *dst; local
292 Uint8 *src, *dst; local
327 Uint8 *src, *dst; local
376 Uint16 *src, *dst; local
387 Uint8 *src, *dst; local
416 Uint8 *src, *dst, lf, rf, ce; local
437 Sint8 *src, *dst, lf, rf, ce; local
458 Uint8 *src, *dst; local
517 Uint8 *src, *dst; local
593 Uint8 *src, *dst, lf, rf, ce; local
612 Sint8 *src, *dst, lf, rf, ce; local
631 Uint8 *src, *dst; local
680 Uint8 *src, *dst; local
739 Uint8 *src, *dst; local
762 Uint8 *src, *dst; local
786 Uint8 *src, *dst; local
863 Uint8 *src, *dst; local
901 Uint8 *src, *dst; local
944 Uint8 *src, *dst; local
1000 Uint8 *src, *dst; local
1067 Uint8 *src, *dst; local
1102 Uint8 *src, *dst; local
1140 Uint8 *src, *dst; local
1183 Uint8 *src, *dst; local
    [all...]
  /bionic/libc/arch-arm/bionic/
eabi.c 66 void __aeabi_memcpy8(void *dest, const void *src, size_t n) {
67 memcpy(dest, src, n);
70 void __aeabi_memcpy4(void *dest, const void *src, size_t n) {
71 memcpy(dest, src, n);
74 void __aeabi_memcpy(void *dest, const void *src, size_t n) {
75 memcpy(dest, src, n);
79 void __aeabi_memmove8(void *dest, const void *src, size_t n) {
80 memmove(dest, src, n);
83 void __aeabi_memmove4(void *dest, const void *src, size_t n) {
84 memmove(dest, src, n)
    [all...]
  /bionic/libc/string/
strlcpy.c 23 * Copy src to string dst of size siz. At most siz-1 characters
25 * Returns strlen(src); if retval >= siz, truncation occurred.
28 strlcpy(char *dst, const char *src, size_t siz)
31 const char *s = src;
42 /* Not enough room in dst, add NUL and traverse rest of src */
50 return(s - src - 1); /* count does not include NUL */
  /bionic/libc/wchar/
wcpncpy.c 33 wcpncpy(wchar_t * __restrict dst, const wchar_t * __restrict src, size_t n)
36 for (; n--; dst++, src++) {
37 if (!(*dst = *src)) {
wcsxfrm.c 35 wcsxfrm(wchar_t * __restrict dest, const wchar_t * __restrict src, size_t len)
41 if (*src == L'\0') {
47 slen = wcslen(src);
50 wcscpy(dest, src);
52 wcsncpy(dest, src, len - 1);
  /external/clang/test/Analysis/
cstring-syntax.c 7 void testStrncat(const char *src) {
12 strncat(dest, src, sizeof(src)); // expected-warning {{Potential buffer overflow. Replace with}}
  /external/clang/test/CodeGenCXX/
casts.cpp 6 void copyFrom(const A &src);
12 void A::copyFrom(const A &src) {
13 ((A &)src).addRef();
  /external/llvm/lib/Support/
regstrlcpy.c 24 * Copy src to string dst of size siz. At most siz-1 characters
26 * Returns strlen(src); if retval >= siz, truncation occurred.
29 llvm_strlcpy(char *dst, const char *src, size_t siz)
32 const char *s = src;
43 /* Not enough room in dst, add NUL and traverse rest of src */
51 return(s - src - 1); /* count does not include NUL */
  /external/mksh/src/
strlcpy.c 21 __RCSID("$MirOS: src/bin/mksh/strlcpy.c,v 1.7 2009/06/10 18:12:50 tg Rel $");
24 * Copy src to string dst of size siz. At most siz-1 characters
26 * Returns strlen(src); if retval >= siz, truncation occurred.
29 strlcpy(char *dst, const char *src, size_t siz)
31 const char *s = src;
45 /* traverse rest of src */
51 return ((size_t)(s - src - 1));
  /external/openssh/openbsd-compat/
strlcpy.c 28 * Copy src to string dst of size siz. At most siz-1 characters
30 * Returns strlen(src); if retval >= siz, truncation occurred.
33 strlcpy(char *dst, const char *src, size_t siz)
36 const char *s = src;
47 /* Not enough room in dst, add NUL and traverse rest of src */
55 return(s - src - 1); /* count does not include NUL */
  /external/skia/include/core/
SkFlate.h 29 * Use the flate compression algorithm to compress the data in src,
32 static bool Deflate(SkStream* src, SkWStream* dst);
35 * Use the flate compression algorithm to compress the data in src,
38 static bool Deflate(const void* src, size_t len, SkWStream* dst);
46 /** Use the flate compression algorithm to decompress the data in src,
49 static bool Inflate(SkStream* src, SkWStream* dst);
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
DelayWrite_32.c 28 void DelayWrite_32(const LVM_INT32 *src, /* Source 1, to be delayed */
39 delay[Offset] = *src;
41 src++;
Mult3s_32x16.c 29 void Mult3s_32x16( const LVM_INT32 *src,
39 srcval=*src;
40 src++;
mult3s_16x16.c 28 void Mult3s_16x16( const LVM_INT16 *src,
38 temp = (LVM_INT32)(*src) * (LVM_INT32)val;
39 src++;
  /hardware/ti/omap4xxx/domx/domx/
Android.mk 6 omx_rpc/src/omx_rpc.c \
7 omx_rpc/src/omx_rpc_skel.c \
8 omx_rpc/src/omx_rpc_stub.c \
9 omx_rpc/src/omx_rpc_config.c \
10 omx_rpc/src/omx_rpc_platform.c \
11 omx_proxy_common/src/omx_proxy_common.c
  /external/skia/src/core/
SkPackBits.cpp 13 const void* SK_RESTRICT src, int n) {
16 const uint8_t* s = (const uint8_t*)src;
71 #define PB_MEMCPY(dst, src, count) \
74 memcpy(dst, src, count); \
76 small_memcpy(dst, src, count); \
162 const uint16_t* SK_RESTRICT src, int count) {
169 PB_MEMCPY(dst, src, n * sizeof(uint16_t));
170 src += n;
178 const uint8_t* SK_RESTRICT src, int count) {
185 PB_MEMCPY(dst, src, n)
    [all...]
SkGeometry.cpp 195 static SkScalar eval_quad(const SkScalar src[], SkScalar t)
197 SkASSERT(src);
201 SkScalar C = src[0];
202 SkScalar A = src[4] - 2 * src[2] + C;
203 SkScalar B = 2 * (src[2] - C);
206 SkScalar ab = SkScalarInterp(src[0], src[2], t);
207 SkScalar bc = SkScalarInterp(src[2], src[4], t);
    [all...]
  /external/v8/src/x64/
assembler-x64.h 670 void push(Register src);
671 void push(const Operand& src);
680 void movb(Register dst, const Operand& src);
682 void movb(const Operand& dst, Register src);
686 void movw(const Operand& dst, Register src);
688 void movl(Register dst, Register src);
689 void movl(Register dst, const Operand& src);
690 void movl(const Operand& dst, Register src);
696 void movq(const Operand& dst, Register src);
698 void movq(Register dst, const Operand& src);
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/audio/
AudioRenderer.java 56 public void playSourceInstance(AudioNode src);
57 public void playSource(AudioNode src);
58 public void pauseSource(AudioNode src);
59 public void stopSource(AudioNode src);
61 public void updateSourceParam(AudioNode src, AudioParam param);

Completed in 1231 milliseconds

1 2 3 4 56 7 8 91011>>