Searched refs:src (Results 126 - 150 of 4668) sorted by relevance

1234567891011>>

/external/skia/gn/
H A Dcp.py12 src, dst = sys.argv[1:]
20 if os.path.isdir(src):
21 shutil.copytree(src, dst)
23 shutil.copy2(src, dst)
/external/skia/include/core/
H A DSkSwizzle.h17 SK_API void SkSwapRB(uint32_t* dest, const uint32_t* src, int count);
/external/skia/src/gpu/glsl/
H A DGrGLSLUtil.h17 template<int MatrixSize> void GrGLSLGetMatrix(float* dest, const SkMatrix& src);
/external/libvpx/libvpx/vpx_scale/generic/
H A Dgen_scalers.c43 const unsigned char *src = source; local
48 a = src[0];
49 b = src[1];
50 c = src[2];
51 d = src[3];
52 e = src[4];
59 src += 5;
71 unsigned char *src = source; local
74 a = src[0 * src_pitch];
75 b = src[
117 const unsigned char *src = source; local
144 unsigned char *src = source; local
188 const unsigned char *src = source; local
[all...]
/external/protobuf/objectivec/DevTools/
H A Dcompile_testing_protos.sh32 [[ -x src/protoc ]] || \
43 src/google/protobuf/*.proto \
45 src/.libs src/*.la src/protoc \
71 src/google/protobuf/unittest_arena.proto
72 src/google/protobuf/unittest_custom_options.proto
73 src/google/protobuf/unittest_enormous_descriptor.proto
74 src/google/protobuf/unittest_embed_optimize_for.proto
75 src/googl
[all...]
/external/wpa_supplicant_8/hs20/client/
H A DMakefile22 CFLAGS += -I../../src/utils
23 CFLAGS += -I../../src/common
24 CFLAGS += -I../../src
39 OBJS += ../../src/utils/xml-utils.o
42 OBJS += ../../src/common/wpa_ctrl.o ../../src/common/wpa_helpers.o
47 OBJS += ../../src/utils/eloop.o
48 OBJS += ../../src/utils/wpabuf.o
49 OBJS += ../../src/wps/httpread.o
50 OBJS += ../../src/wp
[all...]
/external/google-breakpad/
H A DAndroid.mk26 src/client/linux/dump_writer_common/seccomp_unwinder.cc \
27 src/client/linux/dump_writer_common/thread_info.cc \
28 src/client/linux/dump_writer_common/ucontext_reader.cc \
29 src/client/linux/handler/minidump_descriptor.cc \
30 src/client/linux/minidump_writer/linux_core_dumper.cc \
31 src/client/linux/minidump_writer/linux_dumper.cc \
32 src/client/linux/minidump_writer/linux_ptrace_dumper.cc \
33 src/client/linux/minidump_writer/minidump_writer.cc \
34 src/client/minidump_file_writer.cc \
35 src/commo
[all...]
/external/clang/test/Analysis/
H A Dcstring-syntax.c7 void testStrncat(const char *src) { argument
12 strncat(dest, src, sizeof(src)); // expected-warning {{Potential buffer overflow. Replace with}}
/external/clang/test/CodeGenCXX/
H A Dcasts.cpp6 void copyFrom(const A &src);
12 void A::copyFrom(const A &src) { argument
13 ((A &)src).addRef();
H A Ddebug-info-scope.cpp7 int src();
16 if (int i = src())
23 if (int i = src()) {
/external/elfutils/libelf/
H A Dgelf_xlatetof.c41 gelf_xlatetof (Elf *elf, Elf_Data *dest, const Elf_Data * src, argument
48 ? INTUSE(elf32_xlatetof) (dest, src, encode)
49 : INTUSE(elf64_xlatetof) (dest, src, encode));
H A Dgelf_xlatetom.c41 gelf_xlatetom (Elf *elf, Elf_Data *dest, const Elf_Data * src, argument
48 ? INTUSE(elf32_xlatetom) (dest, src, encode)
49 : INTUSE(elf64_xlatetom) (dest, src, encode));
/external/libvpx/libvpx/vpx_dsp/
H A Dsum_squares.c13 uint64_t vpx_sum_squares_2d_i16_c(const int16_t *src, int src_stride, argument
20 const int16_t v = src[c];
23 src += src_stride;
/external/llvm/lib/Support/
H A Dregstrlcpy.c24 * 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) argument
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/mesa3d/src/gallium/winsys/sw/null/
H A DMakefile7 -I$(TOP)/src/gallium/include \
8 -I$(TOP)/src/gallium/drivers \
9 -I$(TOP)/src/gallium/auxiliary
/external/mesa3d/src/gallium/winsys/sw/xlib/
H A DMakefile7 -I$(TOP)/src/gallium/include \
8 -I$(TOP)/src/gallium/drivers \
9 -I$(TOP)/src/gallium/auxiliary \
/external/mesa3d/src/mesa/main/
H A Dformat_pack.h33 typedef void (*gl_pack_ubyte_rgba_func)(const GLubyte src[4], void *dst);
36 typedef void (*gl_pack_float_rgba_func)(const GLfloat src[4], void *dst);
39 typedef void (*gl_pack_float_z_func)(const GLfloat *src, void *dst);
42 typedef void (*gl_pack_uint_z_func)(const GLuint *src, void *dst);
45 typedef void (*gl_pack_ubyte_stencil_func)(const GLubyte *src, void *dst);
73 const GLfloat src[][4], void *dst);
77 const GLubyte src[][4], void *dst);
82 const GLubyte *src, GLint srcRowStride,
87 const GLfloat *src, void *dst);
91 const GLuint *src, voi
[all...]
/external/mksh/src/
H A Dstrlcpy.c21 __RCSID("$MirOS: src/bin/mksh/strlcpy.c,v 1.10 2015/11/29 17:05:02 tg Exp $");
24 * Copy src to string dst of size siz. At most siz-1 characters
26 * Returns strlen(src); if retval >= siz, truncation occurred.
30 strlcpy(char *dst, const char *src, size_t siz) argument
32 const char *s = src;
46 /* traverse rest of src */
52 return ((size_t)(s - src - 1));
/external/openssh/openbsd-compat/
H A Dstrlcpy.c28 * 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) argument
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/swiftshader/third_party/LLVM/lib/Support/
H A Dregstrlcpy.c24 * 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) argument
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/tcpdump/missing/
H A Dstrlcpy.c42 * Copy src to string dst of size siz. At most siz-1 characters
44 * Returns strlen(src); if retval >= siz, truncation occurred.
47 strlcpy(char *dst, const char *src, size_t siz) argument
50 register const char *s = src;
61 /* Not enough room in dst, add NUL and traverse rest of src */
69 return(s - src - 1); /* count does not include NUL */
/external/valgrind/none/tests/s390x/
H A Dcu41.stdout.exp6 src len: 0
12 src len: 0
16 src len: 1
20 src len: 2
24 src len: 3
28 src address difference: 0 src len: 0
32 src address difference: 0 src len: 1
36 src addres
[all...]
H A Dcu21.stdout.exp6 src len: 0
12 src len: 1
16 src address difference: 0 src len: 1
20 src address difference: 0 src len: 1
24 src address difference: 0 src len: 1
28 src address difference: 0 src le
[all...]
H A Dcu21_1.stdout.exp6 src len: 0
12 src len: 1
16 src address difference: 0 src len: 1
20 src address difference: 0 src len: 1
24 src address difference: 0 src len: 1
28 src address difference: 0 src le
[all...]
/external/protobuf/csharp/
H A Dgenerate_protos.sh20 elif [ -x src/protoc ]; then
21 PROTOC=src/protoc
29 $PROTOC -Isrc --csharp_out=csharp/src/Google.Protobuf \
31 src/google/protobuf/descriptor.proto \
32 src/google/protobuf/any.proto \
33 src/google/protobuf/api.proto \
34 src/google/protobuf/duration.proto \
35 src/google/protobuf/empty.proto \
36 src/google/protobuf/field_mask.proto \
37 src/googl
[all...]

Completed in 3085 milliseconds

1234567891011>>