Searched refs:src (Results 226 - 250 of 7407) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/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/chromium_org/third_party/skia/src/core/
H A DSkFlate.h29 * 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);
H A DSkPackBits.cpp13 const void* SK_RESTRICT src, size_t 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,
12 small_memcpy(void* SK_RESTRICT dst, const void* SK_RESTRICT src, size_t n) argument
161 flush_diff16(uint8_t* SK_RESTRICT dst, const uint16_t* SK_RESTRICT src, int count) argument
177 flush_diff8(uint8_t* SK_RESTRICT dst, const uint8_t* SK_RESTRICT src, int count) argument
193 Pack16(const uint16_t* SK_RESTRICT src, int count, uint8_t* SK_RESTRICT dst) argument
236 Pack8(const uint8_t* SK_RESTRICT src, int count, uint8_t* SK_RESTRICT dst) argument
282 Unpack16(const uint8_t* SK_RESTRICT src, size_t srcSize, uint16_t* SK_RESTRICT dst) argument
304 Unpack8(const uint8_t* SK_RESTRICT src, size_t srcSize, uint8_t* SK_RESTRICT dst) argument
331 Unpack8(uint8_t* SK_RESTRICT dst, size_t dstSkip, size_t dstWrite, const uint8_t* SK_RESTRICT src) argument
[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();
/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.8 2013/11/05 22:10:15 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/skia/src/core/
H A DSkFlate.h29 * 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);
H A DSkPackBits.cpp13 const void* SK_RESTRICT src, size_t 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,
12 small_memcpy(void* SK_RESTRICT dst, const void* SK_RESTRICT src, size_t n) argument
161 flush_diff16(uint8_t* SK_RESTRICT dst, const uint16_t* SK_RESTRICT src, int count) argument
177 flush_diff8(uint8_t* SK_RESTRICT dst, const uint8_t* SK_RESTRICT src, int count) argument
193 Pack16(const uint16_t* SK_RESTRICT src, int count, uint8_t* SK_RESTRICT dst) argument
236 Pack8(const uint8_t* SK_RESTRICT src, int count, uint8_t* SK_RESTRICT dst) argument
282 Unpack16(const uint8_t* SK_RESTRICT src, size_t srcSize, uint16_t* SK_RESTRICT dst) argument
304 Unpack8(const uint8_t* SK_RESTRICT src, size_t srcSize, uint8_t* SK_RESTRICT dst) argument
331 Unpack8(uint8_t* SK_RESTRICT dst, size_t dstSkip, size_t dstWrite, const uint8_t* SK_RESTRICT src) argument
[all...]
/external/protobuf/
H A DAndroid.mk22 src/google/protobuf/stubs/common.cc \
23 src/google/protobuf/stubs/once.cc \
24 src/google/protobuf/stubs/hash.cc \
25 src/google/protobuf/stubs/hash.h \
26 src/google/protobuf/stubs/map-util.h \
27 src/google/protobuf/stubs/stl_util-inl.h \
28 src/google/protobuf/extension_set.cc \
29 src/google/protobuf/generated_message_util.cc \
30 src/google/protobuf/message_lite.cc \
31 src/googl
[all...]
/external/chromium_org/third_party/libwebp/enc/
H A Dpicture_psnr.c26 static float AccumulateLSIM(const uint8_t* src, int src_stride, argument
41 const uint8_t* s = src + j * src_stride;
64 int WebPPictureDistortion(const WebPPicture* src, const WebPPicture* ref, argument
70 if (src == NULL || ref == NULL ||
71 src->width != ref->width || src->height != ref->height ||
72 src->y == NULL || ref->y == NULL ||
73 src->u == NULL || ref->u == NULL ||
74 src->v == NULL || ref->v == NULL ||
79 if (src
[all...]
/external/webp/src/enc/
H A Dpicture_psnr.c26 static float AccumulateLSIM(const uint8_t* src, int src_stride, argument
41 const uint8_t* s = src + j * src_stride;
64 int WebPPictureDistortion(const WebPPicture* src, const WebPPicture* ref, argument
70 if (src == NULL || ref == NULL ||
71 src->width != ref->width || src->height != ref->height ||
72 src->y == NULL || ref->y == NULL ||
73 src->u == NULL || ref->u == NULL ||
74 src->v == NULL || ref->v == NULL ||
79 if (src
[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/valgrind/main/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/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_framebuffer.c50 const struct pipe_framebuffer_state *src)
54 if (dst->width != src->width ||
55 dst->height != src->height)
58 for (i = 0; i < Elements(src->cbufs); i++) {
59 if (dst->cbufs[i] != src->cbufs[i]) {
64 if (dst->nr_cbufs != src->nr_cbufs) {
68 if (dst->zsbuf != src->zsbuf) {
77 * Copy framebuffer state from src to dst, updating refcounts.
81 const struct pipe_framebuffer_state *src)
85 dst->width = src
49 util_framebuffer_state_equal(const struct pipe_framebuffer_state *dst, const struct pipe_framebuffer_state *src) argument
80 util_copy_framebuffer_state(struct pipe_framebuffer_state *dst, const struct pipe_framebuffer_state *src) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_framebuffer.c50 const struct pipe_framebuffer_state *src)
54 if (dst->width != src->width ||
55 dst->height != src->height)
58 for (i = 0; i < Elements(src->cbufs); i++) {
59 if (dst->cbufs[i] != src->cbufs[i]) {
64 if (dst->nr_cbufs != src->nr_cbufs) {
68 if (dst->zsbuf != src->zsbuf) {
77 * Copy framebuffer state from src to dst, updating refcounts.
81 const struct pipe_framebuffer_state *src)
85 dst->width = src
49 util_framebuffer_state_equal(const struct pipe_framebuffer_state *dst, const struct pipe_framebuffer_state *src) argument
80 util_copy_framebuffer_state(struct pipe_framebuffer_state *dst, const struct pipe_framebuffer_state *src) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_fs_copy_propagation.cpp30 fs_reg src; member in struct:__anon14353::acp_entry
37 if (inst->src[arg].file != entry->dst.file ||
38 inst->src[arg].reg != entry->dst.reg ||
39 inst->src[arg].reg_offset != entry->dst.reg_offset) {
45 inst->src[arg].type == BRW_REGISTER_TYPE_UD &&
46 entry->src.negate)
49 bool has_source_modifiers = entry->src.abs || entry->src.negate;
52 (has_source_modifiers || entry->src.file == UNIFORM))
55 inst->src[ar
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_copy_propagation.cpp30 fs_reg src; member in struct:__anon27764::acp_entry
37 if (inst->src[arg].file != entry->dst.file ||
38 inst->src[arg].reg != entry->dst.reg ||
39 inst->src[arg].reg_offset != entry->dst.reg_offset) {
45 inst->src[arg].type == BRW_REGISTER_TYPE_UD &&
46 entry->src.negate)
49 bool has_source_modifiers = entry->src.abs || entry->src.negate;
52 (has_source_modifiers || entry->src.file == UNIFORM))
55 inst->src[ar
[all...]

Completed in 6150 milliseconds

1234567891011>>