/external/openssl/include/openssl/ |
buffer.h | 94 size_t BUF_strlcpy(char *dst,const char *src,size_t siz); 95 size_t BUF_strlcat(char *dst,const char *src,size_t siz);
|
/external/qemu/android/skin/ |
surface.h | 89 extern void skin_surface_blit( SkinSurface* dst, 96 extern void skin_surface_fill( SkinSurface* dst,
|
/external/qemu/audio/ |
mixeng.h | 36 typedef void (t_sample) (struct st_sample *dst, const void *src, 38 typedef void (f_sample) (void *dst, const struct st_sample *src, int samples);
|
/external/qemu/distrib/sdl-1.2.12/src/stdlib/ |
SDL_iconv.c | 213 char *dst; local 227 dst = *outbuf; 285 *(Uint16 *)dst = UNICODE_BOM; 286 dst += 2; 295 *(Uint32 *)dst = UNICODE_BOM; 296 dst += 4; 575 Uint8 *p = (Uint8 *)dst; 584 ++dst; 590 Uint8 *p = (Uint8 *)dst; 599 ++dst; [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/ |
SDL_yuv_sw_c.h | 35 extern int SDL_DisplayYUV_SW(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst);
|
/external/qemu/distrib/sdl-1.2.12/src/video/directfb/ |
SDL_DirectFB_yuv.h | 35 extern int DirectFB_DisplayYUVOverlay(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst);
|
/external/qemu/distrib/sdl-1.2.12/src/video/ps2gs/ |
SDL_gsyuv_c.h | 35 extern int GS_DisplayYUVOverlay(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst);
|
/external/qemu/distrib/sdl-1.2.12/src/video/windx5/ |
SDL_dx5yuv_c.h | 36 extern int DX5_DisplayYUVOverlay(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst);
|
/external/qemu/distrib/sdl-1.2.12/src/video/x11/ |
SDL_x11yuv_c.h | 37 extern int X11_DisplayYUVOverlay(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst);
|
/external/skia/gpu/include/ |
GrTemplates.h | 25 template <typename Dst, typename Src> Dst GrTCast(Src src) { 28 Dst dst; member in union:__anon10791 31 return data.dst;
|
/external/skia/include/core/ |
SkPostConfig.h | 162 #define sk_strcpy(dst, src) strcpy(dst, src) 177 #define sk_memcpy(dst, src, n) memcpy(dst, src, n) 180 #define memmove(dst, src, n) memmove(dst, src, n) 183 #define sk_memset(dst, val, n) memset(dst, val, n)
|
/external/skia/include/utils/ |
SkCullPoints.h | 63 SkCullPointsPath(const SkIRect& r, SkPath* dst); 65 void reset(const SkIRect& r, SkPath* dst);
|
/external/skia/src/utils/ |
SkOSFile.cpp | 9 uint16_t* dst = (uint16_t*)sk_malloc_throw((len + len2) * sizeof(uint16_t)); local 12 dst[i] = src[i]; 14 if (i > 0 && dst[i-1] != '/') 15 dst[i++] = '/'; 16 dst[i++] = '*'; 21 dst[i++] = *suffix++; 23 dst[i] = 0; 26 return dst;
|
/external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/ |
preauth.h | 23 int rsn_preauth_init(struct wpa_sm *sm, const u8 *dst, 45 static inline int rsn_preauth_init(struct wpa_sm *sm, const u8 *dst,
|
/external/wpa_supplicant_8/hostapd/ |
ctrl_iface.c | 61 struct wpa_ctrl_dst *dst; local 63 dst = os_zalloc(sizeof(*dst)); 64 if (dst == NULL) 66 os_memcpy(&dst->addr, from, sizeof(struct sockaddr_un)); 67 dst->addrlen = fromlen; 68 dst->debug_level = MSG_INFO; 69 dst->next = hapd->ctrl_dst; 70 hapd->ctrl_dst = dst; 82 struct wpa_ctrl_dst *dst, *prev = NULL local 113 struct wpa_ctrl_dst *dst; local 1048 struct wpa_ctrl_dst *dst, *prev; local 1084 struct wpa_ctrl_dst *dst, *next; local [all...] |
/frameworks/base/media/libeffects/lvm/lib/Common/src/ |
Core_MixHard_2St_D32C31_SAT.c | 32 LVM_INT32 *dst, 55 *dst++ = Temp2;
|
/libcore/luni/src/main/java/java/nio/ |
DoubleArrayBuffer.java | 67 public final DoubleBuffer get(double[] dst, int dstOffset, int doubleCount) { 71 System.arraycopy(backingArray, offset + position, dst, dstOffset, doubleCount);
|
FloatArrayBuffer.java | 67 public final FloatBuffer get(float[] dst, int dstOffset, int floatCount) { 71 System.arraycopy(backingArray, offset + position, dst, dstOffset, floatCount);
|
IntArrayBuffer.java | 67 public final IntBuffer get(int[] dst, int dstOffset, int intCount) { 71 System.arraycopy(backingArray, offset + position, dst, dstOffset, intCount);
|
LongArrayBuffer.java | 67 public final LongBuffer get(long[] dst, int dstOffset, int longCount) { 71 System.arraycopy(backingArray, offset + position, dst, dstOffset, longCount);
|
ShortArrayBuffer.java | 67 public final ShortBuffer get(short[] dst, int dstOffset, int shortCount) { 71 System.arraycopy(backingArray, offset + position, dst, dstOffset, shortCount);
|
/ndk/sources/host-tools/ndk-stack/regex/ |
regexec.c | 74 #define FWD(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) << (n)) 75 #define BACK(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) >> (n)) 123 #define FWD(dst, src, n) ((dst)[here+(n)] |= (src)[here]) 124 #define BACK(dst, src, n) ((dst)[here-(n)] |= (src)[here])
|
/packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/filters/ |
DuotoneFilter.java | 39 public void process(Photo src, Photo dst) { 43 effect.apply(src.texture(), src.width(), src.height(), dst.texture());
|
FlipFilter.java | 39 public void process(Photo src, Photo dst) { 43 effect.apply(src.texture(), src.width(), src.height(), dst.texture());
|
RedEyeFilter.java | 43 public void process(Photo src, Photo dst) { 52 effect.apply(src.texture(), src.width(), src.height(), dst.texture());
|