HomeSort by relevance Sort by last modified time
    Searched refs:src (Results 251 - 275 of 12122) sorted by null

<<11121314151617181920>>

  /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/swiftshader/third_party/llvm-subzero/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_16x16.c 28 void Mult3s_16x16( const LVM_INT16 *src,
38 temp = (LVM_INT32)(*src) * (LVM_INT32)val;
39 src++;
  /hardware/qcom/data/ipacfg-mgr/msm8998/hal/
Android.mk 5 LOCAL_SRC_FILES := src/CtUpdateAmbassador.cpp \
6 src/HAL.cpp \
7 src/IpaEventRelay.cpp \
8 src/LocalLogBuffer.cpp \
9 src/OffloadStatistics.cpp \
10 src/PrefixParser.cpp
  /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.27/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...]
  /external/wpa_supplicant_8/hostapd/
Android.mk 61 INCLUDES += $(LOCAL_PATH)/src
62 INCLUDES += $(LOCAL_PATH)/src/utils
93 OBJS += src/ap/hostapd.c
94 OBJS += src/ap/wpa_auth_glue.c
95 OBJS += src/ap/drv_callbacks.c
96 OBJS += src/ap/ap_drv_ops.c
97 OBJS += src/ap/utils.c
98 OBJS += src/ap/authsrv.c
99 OBJS += src/ap/ieee802_1x.c
100 OBJS += src/ap/ap_config.
    [all...]
  /external/lzma/CPP/Common/
StringConvert.cpp 42 void MultiByteToUnicodeString2(UString &dest, const AString &src, UINT codePage)
45 if (src.IsEmpty())
49 wchar_t *d = dest.GetBuf(src.Len());
50 const char *s = (const char *)src;
61 if (i != src.Len())
64 src.Len() - i, d + i,
65 src.Len() + 1 - i);
74 unsigned len = MultiByteToWideChar(codePage, 0, src, src.Len(), NULL, 0);
82 len = MultiByteToWideChar(codePage, 0, src, src.Len(), dest.GetBuf(len), len);
    [all...]
  /prebuilts/go/darwin-x86/misc/cgo/testsanitizers/
tsan_test.go 21 src string
24 {src: "tsan.go"},
25 {src: "tsan2.go"},
26 {src: "tsan3.go"},
27 {src: "tsan4.go"},
28 {src: "tsan5.go", needsRuntime: true},
29 {src: "tsan6.go", needsRuntime: true},
30 {src: "tsan7.go", needsRuntime: true},
31 {src: "tsan8.go"},
32 {src: "tsan9.go"}
    [all...]
  /prebuilts/go/linux-x86/misc/cgo/testsanitizers/
tsan_test.go 21 src string
24 {src: "tsan.go"},
25 {src: "tsan2.go"},
26 {src: "tsan3.go"},
27 {src: "tsan4.go"},
28 {src: "tsan5.go", needsRuntime: true},
29 {src: "tsan6.go", needsRuntime: true},
30 {src: "tsan7.go", needsRuntime: true},
31 {src: "tsan8.go"},
32 {src: "tsan9.go"}
    [all...]
  /external/python/cpython2/Mac/Modules/cf/
pycfbridge.c 17 PyCF_CF2Python(CFTypeRef src) {
20 if( src == NULL ) {
24 typeid = CFGetTypeID(src);
26 return PyCF_CF2Python_sequence((CFArrayRef)src);
28 return PyCF_CF2Python_mapping((CFDictionaryRef)src);
29 return PyCF_CF2Python_simple(src);
33 PyCF_CF2Python_sequence(CFArrayRef src) {
34 int size = CFArrayGetCount(src);
43 item_cf = CFArrayGetValueAtIndex(src, i);
58 PyCF_CF2Python_mapping(CFTypeRef src) {
    [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/freetype/builds/amiga/
makefile.os4 38 #include "FT:src/base/ftinit.c"
54 DIRFLAGS = -Iinclude -I/FT/src -I/FT/include -I/SDK/include
67 ftbase.ppc.o: FT:src/base/ftbase.c
68 $(CC) -c $(CFLAGS) -o $@ /FT/src/base/ftbase.c
70 ftinit.ppc.o: FT:src/base/ftinit.c
71 $(CC) -c $(CFLAGS) -o $@ /FT/src/base/ftinit.c
73 ftsystem.ppc.o: FT:src/base/ftsystem.c
74 $(CC) -c $(CFLAGS) -o $@ /FT/src/base/ftsystem.c
77 ftsystempure.ppc.o: src/base/ftsystem.c
78 $(CC) -c $(CFLAGS) -o $@ src/base/ftsystem.
    [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/libvpx/libvpx/vpx_dsp/mips/
subtract_mmi.c 17 ptrdiff_t diff_stride, const uint8_t *src,
29 "ulw %[tmp0], 0x00(%[src]) \n\t"
34 "gslwlc1 %[ftmp1], 0x03(%[src]) \n\t"
35 "gslwrc1 %[ftmp1], 0x00(%[src]) \n\t"
39 MMI_ADDU(%[src], %[src], %[src_stride])
43 "ulw %[tmp0], 0x00(%[src]) \n\t"
48 "gslwlc1 %[ftmp3], 0x03(%[src]) \n\t"
49 "gslwrc1 %[ftmp3], 0x00(%[src]) \n\t"
53 MMI_ADDU(%[src], %[src], %[src_stride]
    [all...]
  /external/mesa3d/src/gallium/drivers/ilo/shader/
toy_compiler_asm.c 67 } src[3]; member in struct:codegen
192 .src = {
353 .src = {
396 .src = {
427 const struct codegen_src *src = &cg->src[idx]; local
429 return (src->file == GEN6_FILE_ARF &&
430 src->origin == GEN6_ARF_NULL << CG_REG_SHIFT);
434 * Translate a source operand to DW2 or DW3 of the 1-src/2-src format
439 const struct codegen_src *src = &cg->src[idx]; local
867 const struct codegen_src *src = &cg->src[i]; local
1081 struct codegen_src *src = &cg->src[i]; local
    [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 548 milliseconds

<<11121314151617181920>>