HomeSort by relevance Sort by last modified time
    Searched refs:src (Results 226 - 250 of 11064) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/gallium/winsys/sw/null/
Makefile 7 -I$(TOP)/src/gallium/include \
8 -I$(TOP)/src/gallium/drivers \
9 -I$(TOP)/src/gallium/auxiliary
  /external/mesa3d/src/gallium/winsys/sw/xlib/
Makefile 7 -I$(TOP)/src/gallium/include \
8 -I$(TOP)/src/gallium/drivers \
9 -I$(TOP)/src/gallium/auxiliary \
  /external/mesa3d/src/mesa/main/
format_pack.h 33 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, void *dst)
    [all...]
  /external/mksh/src/
strlcpy.c 21 __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)
32 const char *s = src;
46 /* traverse rest of src */
52 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/swiftshader/third_party/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/tcpdump/missing/
strlcpy.c 42 * 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)
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 */
  /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++;
  /packages/apps/Settings/
wrap_alpha.py 20 for src in files:
21 if not src.endswith(".png"): continue
22 src = src[0:-4] variable
24 src_clause = '\n android:src="@drawable/%s"' % (src)
26 alpha = src.endswith("_alpha")
28 src = src[0:-6] variable
33 am = src.endswith("_am"
35 src = src[0:-3] variable
    [all...]
  /toolchain/binutils/binutils-2.25/libiberty/
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)
41 const size_t len = strlen (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}
27 and padding with zeros if necessary. If @var{len} < strlen(@var{src})
29 strlen(@var{src}).
42 stpncpy (char *dst, const char *src, size_t len)
44 size_t n = strlen (src);
47 return strncpy (dst, src, len) + n;
  /bionic/libc/arch-arm64/generic/bionic/
memmove.S 39 #define src x1 define
64 cmp dstin, src
66 add tmp1, src, count
71 * Need to move from the tail backwards. SRC and DST point one
74 add src, src, count
86 sub src, src, tmp1
90 ldp A_l, A_h, [src, #32]
93 ldp A_l, A_h, [src, #16
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacenc/
Android.mk 10 src/aac_rom.c \
11 src/aacenc.c \
12 src/aacenc_core.c \
13 src/adj_thr.c \
14 src/band_nrg.c \
15 src/bit_cnt.c \
16 src/bitbuffer.c \
17 src/bitenc.c \
18 src/block_switch.c \
19 src/channel_map.c
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
ByteBufferBenchmark.java 85 ByteBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType); local
87 src.position(aligned ? 0 : 1);
89 src.get();
95 ByteBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType); local
99 src.position(aligned ? 0 : 1);
100 src.get(dst);
106 ByteBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType); local
108 src.position(aligned ? 0 : 1);
110 src.get(i);
116 ByteBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType) local
126 CharBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType).asCharBuffer(); local
137 ByteBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType); local
147 ByteBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType); local
157 DoubleBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType).asDoubleBuffer(); local
168 ByteBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType); local
178 FloatBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType).asFloatBuffer(); local
189 ByteBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType); local
199 IntBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType).asIntBuffer(); local
210 ByteBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType); local
220 LongBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType).asLongBuffer(); local
231 ByteBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType); local
241 ShortBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType).asShortBuffer(); local
256 ByteBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType); local
277 ByteBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType); local
288 char[] src = new char[1024]; local
298 ByteBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType); local
309 double[] src = new double[1024]; local
319 ByteBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType); local
330 float[] src = new float[1024]; local
340 ByteBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType); local
351 int[] src = new int[1024]; local
361 ByteBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType); local
372 long[] src = new long[1024]; local
382 ByteBuffer src = ByteBufferBenchmark.newBuffer(byteOrder, aligned, bufferType); local
393 short[] src = new short[1024]; local
    [all...]
  /external/valgrind/none/tests/s390x/
cu41.stdout.exp 6 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 address difference: 0 src len:
    [all...]
cu21.stdout.exp 6 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 len:
    [all...]
cu21_1.stdout.exp 6 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 len:
    [all...]
  /external/protobuf/csharp/
generate_protos.sh 20 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/google/protobuf/source_context.proto
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_framebuffer.c 50 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->width
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_copy_propagation.cpp 30 fs_reg src; member in struct:__anon27722::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[arg].file = entry->src.file
    [all...]
  /external/wpa_supplicant_8/hostapd/
Android.mk 53 INCLUDES += $(LOCAL_PATH)/src
54 INCLUDES += $(LOCAL_PATH)/src/utils
85 OBJS += src/ap/hostapd.c
86 OBJS += src/ap/wpa_auth_glue.c
87 OBJS += src/ap/drv_callbacks.c
88 OBJS += src/ap/ap_drv_ops.c
89 OBJS += src/ap/utils.c
90 OBJS += src/ap/authsrv.c
91 OBJS += src/ap/ieee802_1x.c
92 OBJS += src/ap/ap_config.
    [all...]
  /external/eigen/bench/
BenchUtil.h 49 void eiToGmm(const EigenMatrixType& src, GmmMatrixType& dst)
51 dst.resize(src.rows(),src.cols());
52 for (int j=0; j<src.cols(); ++j)
53 for (int i=0; i<src.rows(); ++i)
54 dst(i,j) = src.coeff(i,j);
64 void eiToGsl(const EigenMatrixType& src, gsl_matrix** dst)
66 for (int j=0; j<src.cols(); ++j)
67 for (int i=0; i<src.rows(); ++i)
68 gsl_matrix_set(*dst, i, j, src.coeff(i,j))
    [all...]
  /external/libvpx/libvpx/
tools_common.c 271 static void highbd_img_upshift(vpx_image_t *dst, vpx_image_t *src,
276 if (dst->d_w != src->d_w || dst->d_h != src->d_h ||
277 dst->x_chroma_shift != src->x_chroma_shift ||
278 dst->y_chroma_shift != src->y_chroma_shift || dst->fmt != src->fmt ||
282 switch (src->fmt) {
290 int w = src->d_w;
291 int h = src->d_h;
294 w = (w + src->x_chroma_shift) >> src->x_chroma_shift
    [all...]

Completed in 386 milliseconds

1 2 3 4 5 6 7 8 91011>>