HomeSort by relevance Sort by last modified time
    Searched refs:dst (Results 376 - 400 of 6525) sorted by null

<<11121314151617181920>>

  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/crypto/chacha20poly1305/
chacha20poly1305_noasm.go 9 func (c *chacha20poly1305) seal(dst, nonce, plaintext, additionalData []byte) []byte {
10 return c.sealGeneric(dst, nonce, plaintext, additionalData)
13 func (c *chacha20poly1305) open(dst, nonce, ciphertext, additionalData []byte) ([]byte, error) {
14 return c.openGeneric(dst, nonce, ciphertext, additionalData)
  /prebuilts/go/linux-x86/src/crypto/cipher/
xor.go 17 func fastXORBytes(dst, a, b []byte) int {
25 // Assert dst has enough space
26 _ = dst[n-1]
30 dw := *(*[]uintptr)(unsafe.Pointer(&dst))
39 dst[i] = a[i] ^ b[i]
45 func safeXORBytes(dst, a, b []byte) int {
51 dst[i] = a[i] ^ b[i]
58 func xorBytes(dst, a, b []byte) int {
60 return fastXORBytes(dst, a, b)
62 // TODO(hanwen): if (dst, a, b) have common alignmen
    [all...]
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/crypto/chacha20poly1305/
chacha20poly1305_noasm.go 9 func (c *chacha20poly1305) seal(dst, nonce, plaintext, additionalData []byte) []byte {
10 return c.sealGeneric(dst, nonce, plaintext, additionalData)
13 func (c *chacha20poly1305) open(dst, nonce, ciphertext, additionalData []byte) ([]byte, error) {
14 return c.openGeneric(dst, nonce, ciphertext, additionalData)
  /prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL_gesture.h 61 extern DECLSPEC int SDLCALL SDL_SaveAllDollarTemplates(SDL_RWops *dst);
68 extern DECLSPEC int SDLCALL SDL_SaveDollarTemplate(SDL_GestureID gestureId,SDL_RWops *dst);
  /prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/
SDL_gesture.h 61 extern DECLSPEC int SDLCALL SDL_SaveAllDollarTemplates(SDL_RWops *dst);
68 extern DECLSPEC int SDLCALL SDL_SaveDollarTemplate(SDL_GestureID gestureId,SDL_RWops *dst);
  /prebuilts/misc/windows/sdl2/include/
SDL_gesture.h 61 extern DECLSPEC int SDLCALL SDL_SaveAllDollarTemplates(SDL_RWops *dst);
68 extern DECLSPEC int SDLCALL SDL_SaveDollarTemplate(SDL_GestureID gestureId,SDL_RWops *dst);
  /prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/
SDL_gesture.h 61 extern DECLSPEC int SDLCALL SDL_SaveAllDollarTemplates(SDL_RWops *dst);
68 extern DECLSPEC int SDLCALL SDL_SaveDollarTemplate(SDL_GestureID gestureId,SDL_RWops *dst);
  /toolchain/binutils/binutils-2.27/libiberty/
mempcpy.c 39 mempcpy (PTR dst, const PTR src, size_t len)
41 return (char *) memcpy (dst, src, len) + len;
stpcpy.c 23 @deftypefn Supplemental char* stpcpy (char *@var{dst}, const char *@var{src})
25 Copies the string @var{src} into @var{dst}. Returns a pointer to
26 @var{dst} + strlen(@var{src}).
39 stpcpy (char *dst, const char *src)
42 return (char *) memcpy (dst, src, len + 1) + len;
stpncpy.c 23 @deftypefn Supplemental char* stpncpy (char *@var{dst}, const char *@var{src}, @
26 Copies the string @var{src} into @var{dst}, copying exactly @var{len}
28 then return @var{dst} + @var{len}, otherwise returns @var{dst} +
42 stpncpy (char *dst, const char *src, size_t len)
47 return strncpy (dst, src, len) + n;
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vec4_cmod_propagation.cpp 51 !inst->dst.is_null() ||
72 scan_inst->dst, scan_inst->size_written)) {
74 scan_inst->dst.offset != inst->src[0].offset ||
75 (scan_inst->dst.writemask != WRITEMASK_X &&
76 scan_inst->dst.writemask != WRITEMASK_XYZW) ||
77 (scan_inst->dst.writemask == WRITEMASK_XYZW &&
79 (inst->dst.writemask & ~scan_inst->dst.writemask) != 0 ||
88 (inst->dst.type == BRW_REGISTER_TYPE_D ||
89 inst->dst.type == BRW_REGISTER_TYPE_UD))
    [all...]
  /external/syslinux/lzo/include/lzo/
lzo1b.h 61 lzo_bytep dst, lzo_uintp dst_len,
68 lzo_bytep dst, lzo_uintp dst_len,
74 lzo_bytep dst, lzo_uintp dst_len,
84 lzo_bytep dst, lzo_uintp dst_len,
88 lzo_bytep dst, lzo_uintp dst_len,
92 lzo_bytep dst, lzo_uintp dst_len,
96 lzo_bytep dst, lzo_uintp dst_len,
100 lzo_bytep dst, lzo_uintp dst_len,
104 lzo_bytep dst, lzo_uintp dst_len,
108 lzo_bytep dst, lzo_uintp dst_len
    [all...]
lzo1c.h 61 lzo_bytep dst, lzo_uintp dst_len,
68 lzo_bytep dst, lzo_uintp dst_len,
74 lzo_bytep dst, lzo_uintp dst_len,
84 lzo_bytep dst, lzo_uintp dst_len,
88 lzo_bytep dst, lzo_uintp dst_len,
92 lzo_bytep dst, lzo_uintp dst_len,
96 lzo_bytep dst, lzo_uintp dst_len,
100 lzo_bytep dst, lzo_uintp dst_len,
104 lzo_bytep dst, lzo_uintp dst_len,
108 lzo_bytep dst, lzo_uintp dst_len
    [all...]
  /external/webp/src/dsp/
yuv_mips32.c 27 uint8_t* dst, int len) { \
44 dst[R] = r; \
45 dst[G] = g; \
46 dst[B] = b; \
47 if (A) dst[A] = 0xff; \
51 dst[R + XSTEP] = r; \
52 dst[G + XSTEP] = g; \
53 dst[B + XSTEP] = b; \
54 if (A) dst[A + XSTEP] = 0xff; \
58 dst += 2 * XSTEP;
    [all...]
  /external/swiftshader/src/Shader/
VertexShader.cpp 218 instruction[i]->dst.type == Shader::PARAMETER_INPUT)
220 int index = instruction[i]->dst.index;
238 const DestinationParameter &dst = inst->dst; local
240 switch(dst.type)
243 switch(dst.index)
259 if(dst.index == 0)
261 if(dst.x) output[C0][0] = Semantic(Shader::USAGE_COLOR, 0);
262 if(dst.y) output[C0][1] = Semantic(Shader::USAGE_COLOR, 0);
263 if(dst.z) output[C0][2] = Semantic(Shader::USAGE_COLOR, 0)
296 const DestinationParameter &dst = inst->dst; local
    [all...]
  /cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapverifiers/
WideGamutBitmapVerifier.java 27 ByteBuffer dst = ByteBuffer.allocateDirect(bitmap.getAllocationByteCount()); local
28 bitmap.copyPixelsToBuffer(dst);
29 dst.rewind();
30 dst.order(ByteOrder.LITTLE_ENDIAN);
34 return verify(dst, 0, bitmap.getRowBytes(), width, height);
  /external/skia/include/utils/mac/
SkCGUtils.h 40 SK_API bool SkCreateBitmapFromCGImage(SkBitmap* dst, CGImageRef src);
50 static inline bool SkCopyPixelsFromCGImage(const SkPixmap& dst, CGImageRef src) {
51 return SkCopyPixelsFromCGImage(dst.info(), dst.rowBytes(), dst.writable_addr(), src);
  /external/skia/src/core/
SkConvertPixels.h 20 static inline void SkRectMemcpy(void* dst, size_t dstRB, const void* src, size_t srcRB,
25 memcpy(dst, src, bytesPerRow * rowCount);
30 memcpy(dst, src, bytesPerRow);
31 dst = SkTAddOffset<void>(dst, dstRB);
  /external/skqp/include/utils/mac/
SkCGUtils.h 40 SK_API bool SkCreateBitmapFromCGImage(SkBitmap* dst, CGImageRef src);
50 static inline bool SkCopyPixelsFromCGImage(const SkPixmap& dst, CGImageRef src) {
51 return SkCopyPixelsFromCGImage(dst.info(), dst.rowBytes(), dst.writable_addr(), src);
  /external/skqp/src/core/
SkConvertPixels.h 20 static inline void SkRectMemcpy(void* dst, size_t dstRB, const void* src, size_t srcRB,
25 memcpy(dst, src, bytesPerRow * rowCount);
30 memcpy(dst, src, bytesPerRow);
31 dst = SkTAddOffset<void>(dst, dstRB);
  /system/bt/osi/src/
compat.cc 60 * Copy src to string dst of size siz. At most siz-1 characters
64 size_t strlcpy(char* dst, const char* src, size_t siz) {
65 char* d = dst;
76 /* Not enough room in dst, add NUL and traverse rest of src */
78 if (siz != 0) *d = '\0'; /* NUL-terminate dst */
89 * Appends src to string dst of size siz (unlike strncat, siz is the
90 * full size of dst, not space left). At most siz-1 characters
91 * will be copied. Always NUL terminates (unless siz <= strlen(dst)).
92 * Returns strlen(src) + MIN(siz, strlen(initial dst)).
95 size_t strlcat(char* dst, const char* src, size_t siz)
    [all...]
  /system/core/libunwindstack/tests/
MemoryLocalTest.cpp 35 std::vector<uint8_t> dst(1024);
36 ASSERT_TRUE(local.ReadFully(reinterpret_cast<uint64_t>(src.data()), dst.data(), 1024));
37 ASSERT_EQ(0, memcmp(src.data(), dst.data(), 1024));
39 ASSERT_EQ(0x4cU, dst[i]);
43 ASSERT_TRUE(local.ReadFully(reinterpret_cast<uint64_t>(src.data()), dst.data(), 1024));
44 ASSERT_EQ(0, memcmp(src.data(), dst.data(), 1024));
46 ASSERT_EQ(0x23U, dst[i]);
49 ASSERT_EQ(0x4cU, dst[i]);
56 std::vector<uint8_t> dst(100);
57 ASSERT_FALSE(local.ReadFully(0, dst.data(), 1))
    [all...]
  /external/opencv/cv/src/
cvcolor.cpp 93 const void* src, int srcstep, void* dst, int dststep, CvSize size );
96 const void* src, int srcstep, void* dst, int dststep,
100 const void* src, int srcstep, void* dst, int dststep,
104 const void* src, int srcstep, void* dst, int dststep,
114 arrtype* dst, int dststep, \
120 dststep /= sizeof(dst[0]); \
124 for( ; size.height--; src += srcstep, dst += dststep ) \
129 dst[i] = t0; \
130 dst[i+1] = t1; \
131 dst[i+2] = t2;
2241 CvMat dststub, *dst = (CvMat*)dstarr; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_surface.c 77 struct nouveau_surface *dst)
80 dst->offset = src->offset;
81 dst->layout = src->layout;
82 dst->format = src->format;
83 dst->width = src->width;
84 dst->height = src->height;
85 dst->cpp = src->cpp;
86 dst->pitch = src->pitch;
87 nouveau_bo_ref(src->bo, &dst->bo);
90 nouveau_bo_ref(NULL, &dst->bo)
    [all...]
  /external/opencv/cxcore/src/
cxcopy.cpp 58 uchar* dst, int dststep, CvSize size ),
59 (src, srcstep, dst, dststep, size) )
61 for( ; size.height--; src += srcstep, dst += dststep )
62 memcpy( dst, src, size.width );
69 icvSet_8u_C1R( uchar* dst, int dst_step, CvSize size,
73 uchar* dst_limit = dst + size.width;
77 while( dst + copy_len <= dst_limit )
79 memcpy( dst, scalar, copy_len );
80 dst += copy_len;
83 memcpy( dst, scalar, dst_limit - dst )
297 CvMat dststub, *dst = (CvMat*)dstarr; local
912 CvMat dstub, *dst = (CvMat*)dstarr; local
996 CvMat dstub, *dst = (CvMat*)dstarr; local
    [all...]

Completed in 274 milliseconds

<<11121314151617181920>>