Searched refs:src (Results 276 - 300 of 7407) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/v8/tools/gyp/
H A Dv8_base.target.darwin-arm.mk28 v8/src/accessors.cc \
29 v8/src/allocation.cc \
30 v8/src/allocation-site-scopes.cc \
31 v8/src/allocation-tracker.cc \
32 v8/src/api.cc \
33 v8/src/arguments.cc \
34 v8/src/assembler.cc \
35 v8/src/assert-scope.cc \
36 v8/src/ast-value-factory.cc \
37 v8/src/as
[all...]
H A Dv8_base.target.linux-arm.mk28 v8/src/accessors.cc \
29 v8/src/allocation.cc \
30 v8/src/allocation-site-scopes.cc \
31 v8/src/allocation-tracker.cc \
32 v8/src/api.cc \
33 v8/src/arguments.cc \
34 v8/src/assembler.cc \
35 v8/src/assert-scope.cc \
36 v8/src/ast-value-factory.cc \
37 v8/src/as
[all...]
/external/google-tv-pairing-protocol/cpp/
H A DMakefile.am8 DIST_SUBDIRS = src
11 AM_CPPFLAGS = -I$(top_srcdir)/src \
38 src/polo/encoding/encodingoption.h \
39 src/polo/encoding/hexadecimalencoder.h \
40 src/polo/encoding/secretencoder.h
44 src/polo/pairing/clientpairingsession.h \
45 src/polo/pairing/pairingcontext.h \
46 src/polo/pairing/pairinglistener.h \
47 src/polo/pairing/pairingsession.h \
48 src/pol
[all...]
/external/bluetooth/bluedroid/osi/
H A DAndroid.mk9 ./src/alarm.c \
10 ./src/config.c \
11 ./src/fixed_queue.c \
12 ./src/list.c \
13 ./src/reactor.c \
14 ./src/semaphore.c \
15 ./src/thread.c
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Dr700_asm.c38 bc->bytecode[id++] = S_SQ_ALU_WORD0_SRC0_SEL(alu->src[0].sel) |
39 S_SQ_ALU_WORD0_SRC0_REL(alu->src[0].rel) |
40 S_SQ_ALU_WORD0_SRC0_CHAN(alu->src[0].chan) |
41 S_SQ_ALU_WORD0_SRC0_NEG(alu->src[0].neg) |
42 S_SQ_ALU_WORD0_SRC1_SEL(alu->src[1].sel) |
43 S_SQ_ALU_WORD0_SRC1_REL(alu->src[1].rel) |
44 S_SQ_ALU_WORD0_SRC1_CHAN(alu->src[1].chan) |
45 S_SQ_ALU_WORD0_SRC1_NEG(alu->src[1].neg) |
55 S_SQ_ALU_WORD1_OP3_SRC2_SEL(alu->src[2].sel) |
56 S_SQ_ALU_WORD1_OP3_SRC2_REL(alu->src[
[all...]
/external/mesa3d/src/gallium/drivers/r600/
H A Dr700_asm.c38 bc->bytecode[id++] = S_SQ_ALU_WORD0_SRC0_SEL(alu->src[0].sel) |
39 S_SQ_ALU_WORD0_SRC0_REL(alu->src[0].rel) |
40 S_SQ_ALU_WORD0_SRC0_CHAN(alu->src[0].chan) |
41 S_SQ_ALU_WORD0_SRC0_NEG(alu->src[0].neg) |
42 S_SQ_ALU_WORD0_SRC1_SEL(alu->src[1].sel) |
43 S_SQ_ALU_WORD0_SRC1_REL(alu->src[1].rel) |
44 S_SQ_ALU_WORD0_SRC1_CHAN(alu->src[1].chan) |
45 S_SQ_ALU_WORD0_SRC1_NEG(alu->src[1].neg) |
55 S_SQ_ALU_WORD1_OP3_SRC2_SEL(alu->src[2].sel) |
56 S_SQ_ALU_WORD1_OP3_SRC2_REL(alu->src[
[all...]
/external/chromium_org/third_party/sqlite/src/
H A DMakefile.in29 TCC = @CC@ @CPPFLAGS@ @CFLAGS@ -I. -I${TOP}/src -I${TOP}/ext/rtree
195 $(TOP)/src/alter.c \
196 $(TOP)/src/analyze.c \
197 $(TOP)/src/attach.c \
198 $(TOP)/src/auth.c \
199 $(TOP)/src/backup.c \
200 $(TOP)/src/bitvec.c \
201 $(TOP)/src/btmutex.c \
202 $(TOP)/src/btree.c \
203 $(TOP)/src/btre
[all...]
/external/wpa_supplicant_8/hostapd/
H A DAndroid.mk46 INCLUDES += $(LOCAL_PATH)/src
47 INCLUDES += $(LOCAL_PATH)/src/utils
79 OBJS += src/ap/hostapd.c
80 OBJS += src/ap/wpa_auth_glue.c
81 OBJS += src/ap/drv_callbacks.c
82 OBJS += src/ap/ap_drv_ops.c
83 OBJS += src/ap/utils.c
84 OBJS += src/ap/authsrv.c
85 OBJS += src/ap/ieee802_1x.c
86 OBJS += src/a
[all...]
/external/clang/test/Analysis/
H A Dbstring.c52 char src[] = {1, 2, 3, 4}; local
55 memcpy(dst, src, 4); // no-warning
57 clang_analyzer_eval(memcpy(dst, src, 4) == dst); // expected-warning{{TRUE}}
65 char src[] = {1, 2, 3, 4}; local
68 memcpy(dst, src, 5); // expected-warning{{Memory copy function accesses out-of-bound array element}}
72 char src[] = {1, 2, 3, 4}; local
75 memcpy(dst, src, 4); // expected-warning{{Memory copy function overflows destination buffer}}
79 char src[] = {1, 2, 3, 4}; local
82 memcpy(dst+1, src+2, 2); // no-warning
86 char src[] local
93 char src[] = {1, 2, 3, 4}; local
172 char src[] = {1, 2, 3, 4}; local
185 char src[] = {1, 2, 3, 4}; local
192 char src[] = {1, 2, 3, 4}; local
199 char src[] = {1, 2, 3, 4}; local
206 char src[] = {1, 2, 3, 4}; local
213 char src[] = {1, 2, 3, 4}; local
266 mempcpy_unknownable_size(char *src, float n) argument
292 char src[] = {1, 2, 3, 4}; local
305 char src[] = {1, 2, 3, 4}; local
312 char src[] = {1, 2, 3, 4}; local
405 char src[] = {1, 2, 3, 4}; local
416 char src[] = {1, 2, 3, 4}; local
423 char src[] = {1, 2, 3, 4}; local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_logic.c48 src[i] = 0; \
55 src[i] = ~0; \
65 src[i] = ~src[i]; \
72 src[i] = dest[i]; \
79 src[i] = ~dest[i]; \
86 src[i] &= dest[i]; \
93 src[i] = ~(src[i] & dest[i]); \
100 src[
161 logicop_uint1(struct gl_context *ctx, GLuint n, GLuint src[], const GLuint dest[], const GLubyte mask[]) argument
169 logicop_uint2(struct gl_context *ctx, GLuint n, GLuint src[], const GLuint dest[], const GLubyte mask[]) argument
177 logicop_uint4(struct gl_context *ctx, GLuint n, GLuint src[], const GLuint dest[], const GLubyte mask[]) argument
[all...]
/external/mesa3d/src/mesa/swrast/
H A Ds_logic.c48 src[i] = 0; \
55 src[i] = ~0; \
65 src[i] = ~src[i]; \
72 src[i] = dest[i]; \
79 src[i] = ~dest[i]; \
86 src[i] &= dest[i]; \
93 src[i] = ~(src[i] & dest[i]); \
100 src[
161 logicop_uint1(struct gl_context *ctx, GLuint n, GLuint src[], const GLuint dest[], const GLubyte mask[]) argument
169 logicop_uint2(struct gl_context *ctx, GLuint n, GLuint src[], const GLuint dest[], const GLubyte mask[]) argument
177 logicop_uint4(struct gl_context *ctx, GLuint n, GLuint src[], const GLuint dest[], const GLubyte mask[]) argument
[all...]
/external/qemu/distrib/ext4_utils/
H A Dsources.mk5 src/allocate.c \
6 src/contents.c \
7 src/crc16.c \
8 src/ext4_sb.c \
9 src/ext4_utils.c \
10 src/extent.c \
11 src/indirect.c \
12 src/make_ext4fs.c \
13 src/sha1.c \
14 src/uui
[all...]
/external/bison/
H A DAndroid.mk151 src/AnnotationList.c \
152 src/InadequacyList.c \
153 src/LR0.c \
154 src/Sbitset.c \
155 src/assoc.c \
156 src/closure.c \
157 src/complain.c \
158 src/conflicts.c \
159 src/derives.c \
160 src/file
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dr3xx_vertprog_dump.c155 static void r300_vs_src_dump(uint32_t src) argument
158 (src >> 5) & 0xff, r300_vs_src_debug[src & 0x3],
159 src & (1 << 25) ? "-" : " ",
160 r300_vs_swiz_debug[(src >> 13) & 0x7],
161 src & (1 << 26) ? "-" : " ",
162 r300_vs_swiz_debug[(src >> 16) & 0x7],
163 src & (1 << 27) ? "-" : " ",
164 r300_vs_swiz_debug[(src >> 19) & 0x7],
165 src
180 unsigned src; local
[all...]
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dr3xx_vertprog_dump.c155 static void r300_vs_src_dump(uint32_t src) argument
158 (src >> 5) & 0xff, r300_vs_src_debug[src & 0x3],
159 src & (1 << 25) ? "-" : " ",
160 r300_vs_swiz_debug[(src >> 13) & 0x7],
161 src & (1 << 26) ? "-" : " ",
162 r300_vs_swiz_debug[(src >> 16) & 0x7],
163 src & (1 << 27) ? "-" : " ",
164 r300_vs_swiz_debug[(src >> 19) & 0x7],
165 src
180 unsigned src; local
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A Dimageformats.h26 static void readColor(gl::ColorF *dst, const L8 *src) argument
28 const float lum = gl::normalizedToFloat(src->L);
35 static void writeColor(L8 *dst, const gl::ColorF *src) argument
37 dst->L = gl::floatToNormalized<unsigned char>((src->red + src->green + src->blue) / 3.0f);
50 static void readColor(gl::ColorF *dst, const R8 *src) argument
52 dst->red = gl::normalizedToFloat(src->R);
58 static void readColor(gl::ColorUI *dst, const R8 *src) argument
60 dst->red = src
66 writeColor(R8 *dst, const gl::ColorF *src) argument
71 writeColor(R8 *dst, const gl::ColorUI *src) argument
86 readColor(gl::ColorF *dst, const A8 *src) argument
94 writeColor(A8 *dst, const gl::ColorF *src) argument
110 readColor(gl::ColorF *dst, const L8A8 *src) argument
119 writeColor(L8A8 *dst, const gl::ColorF *src) argument
136 readColor(gl::ColorF *dst, const A8L8 *src) argument
145 writeColor(A8L8 *dst, const gl::ColorF *src) argument
162 readColor(gl::ColorF *dst, const R8G8 *src) argument
170 readColor(gl::ColorUI *dst, const R8G8 *src) argument
178 writeColor(R8G8 *dst, const gl::ColorF *src) argument
184 writeColor(R8G8 *dst, const gl::ColorUI *src) argument
202 readColor(gl::ColorF *dst, const R8G8B8 *src) argument
210 readColor(gl::ColorUI *dst, const R8G8B8 *src) argument
218 writeColor(R8G8B8 *dst, const gl::ColorF *src) argument
225 writeColor(R8G8B8 *dst, const gl::ColorUI *src) argument
246 readColor(gl::ColorF *dst, const B8G8R8 *src) argument
254 readColor(gl::ColorUI *dst, const B8G8R8 *src) argument
262 writeColor(B8G8R8 *dst, const gl::ColorF *src) argument
269 writeColor(B8G8R8 *dst, const gl::ColorUI *src) argument
288 readColor(gl::ColorF *dst, const R5G6B5 *src) argument
296 writeColor(R5G6B5 *dst, const gl::ColorF *src) argument
318 readColor(gl::ColorF *dst, const A8R8G8B8 *src) argument
326 readColor(gl::ColorUI *dst, const A8R8G8B8 *src) argument
334 writeColor(A8R8G8B8 *dst, const gl::ColorF *src) argument
342 writeColor(A8R8G8B8 *dst, const gl::ColorUI *src) argument
363 readColor(gl::ColorF *dst, const R8G8B8A8 *src) argument
371 readColor(gl::ColorUI *dst, const R8G8B8A8 *src) argument
379 writeColor(R8G8B8A8 *dst, const gl::ColorF *src) argument
387 writeColor(R8G8B8A8 *dst, const gl::ColorUI *src) argument
408 readColor(gl::ColorF *dst, const B8G8R8A8 *src) argument
416 readColor(gl::ColorUI *dst, const B8G8R8A8 *src) argument
424 writeColor(B8G8R8A8 *dst, const gl::ColorF *src) argument
432 writeColor(B8G8R8A8 *dst, const gl::ColorUI *src) argument
453 readColor(gl::ColorF *dst, const B8G8R8X8 *src) argument
461 readColor(gl::ColorUI *dst, const B8G8R8X8 *src) argument
469 writeColor(B8G8R8X8 *dst, const gl::ColorF *src) argument
477 writeColor(B8G8R8X8 *dst, const gl::ColorUI *src) argument
496 readColor(gl::ColorF *dst, const B5G5R5A1 *src) argument
504 writeColor(B5G5R5A1 *dst, const gl::ColorF *src) argument
525 readColor(gl::ColorF *dst, const R5G5B5A1 *src) argument
533 writeColor(R5G5B5A1 *dst, const gl::ColorF *src) argument
557 readColor(gl::ColorF *dst, const R4G4B4A4 *src) argument
565 writeColor(R4G4B4A4 *dst, const gl::ColorF *src) argument
589 readColor(gl::ColorF *dst, const A4R4G4B4 *src) argument
597 writeColor(A4R4G4B4 *dst, const gl::ColorF *src) argument
621 readColor(gl::ColorF *dst, const B4G4R4A4 *src) argument
629 writeColor(B4G4R4A4 *dst, const gl::ColorF *src) argument
650 readColor(gl::ColorF *dst, const R16 *src) argument
658 readColor(gl::ColorUI *dst, const R16 *src) argument
666 writeColor(R16 *dst, const gl::ColorF *src) argument
671 writeColor(R16 *dst, const gl::ColorUI *src) argument
687 readColor(gl::ColorF *dst, const R16G16 *src) argument
695 readColor(gl::ColorUI *dst, const R16G16 *src) argument
703 writeColor(R16G16 *dst, const gl::ColorF *src) argument
709 writeColor(R16G16 *dst, const gl::ColorUI *src) argument
728 readColor(gl::ColorF *dst, const R16G16B16 *src) argument
736 readColor(gl::ColorUI *dst, const R16G16B16 *src) argument
744 writeColor(R16G16B16 *dst, const gl::ColorF *src) argument
751 writeColor(R16G16B16 *dst, const gl::ColorUI *src) argument
773 readColor(gl::ColorF *dst, const R16G16B16A16 *src) argument
781 readColor(gl::ColorUI *dst, const R16G16B16A16 *src) argument
789 writeColor(R16G16B16A16 *dst, const gl::ColorF *src) argument
797 writeColor(R16G16B16A16 *dst, const gl::ColorUI *src) argument
818 readColor(gl::ColorF *dst, const R32 *src) argument
826 readColor(gl::ColorUI *dst, const R32 *src) argument
834 writeColor(R32 *dst, const gl::ColorF *src) argument
839 writeColor(R32 *dst, const gl::ColorUI *src) argument
855 readColor(gl::ColorF *dst, const R32G32 *src) argument
863 readColor(gl::ColorUI *dst, const R32G32 *src) argument
871 writeColor(R32G32 *dst, const gl::ColorF *src) argument
877 writeColor(R32G32 *dst, const gl::ColorUI *src) argument
896 readColor(gl::ColorF *dst, const R32G32B32 *src) argument
904 readColor(gl::ColorUI *dst, const R32G32B32 *src) argument
912 writeColor(R32G32B32 *dst, const gl::ColorF *src) argument
919 writeColor(R32G32B32 *dst, const gl::ColorUI *src) argument
941 readColor(gl::ColorF *dst, const R32G32B32A32 *src) argument
949 readColor(gl::ColorUI *dst, const R32G32B32A32 *src) argument
957 writeColor(R32G32B32A32 *dst, const gl::ColorF *src) argument
965 writeColor(R32G32B32A32 *dst, const gl::ColorUI *src) argument
986 readColor(gl::ColorF *dst, const R8S *src) argument
994 readColor(gl::ColorI *dst, const R8S *src) argument
1002 writeColor(R8S *dst, const gl::ColorF *src) argument
1007 writeColor(R8S *dst, const gl::ColorI *src) argument
1023 readColor(gl::ColorF *dst, const R8G8S *src) argument
1031 readColor(gl::ColorI *dst, const R8G8S *src) argument
1039 writeColor(R8G8S *dst, const gl::ColorF *src) argument
1045 writeColor(R8G8S *dst, const gl::ColorI *src) argument
1064 readColor(gl::ColorF *dst, const R8G8B8S *src) argument
1072 readColor(gl::ColorI *dst, const R8G8B8S *src) argument
1080 writeColor(R8G8B8S *dst, const gl::ColorF *src) argument
1087 writeColor(R8G8B8S *dst, const gl::ColorI *src) argument
1109 readColor(gl::ColorF *dst, const R8G8B8A8S *src) argument
1117 readColor(gl::ColorI *dst, const R8G8B8A8S *src) argument
1125 writeColor(R8G8B8A8S *dst, const gl::ColorF *src) argument
1133 writeColor(R8G8B8A8S *dst, const gl::ColorI *src) argument
1154 readColor(gl::ColorF *dst, const R16S *src) argument
1162 readColor(gl::ColorI *dst, const R16S *src) argument
1170 writeColor(R16S *dst, const gl::ColorF *src) argument
1175 writeColor(R16S *dst, const gl::ColorI *src) argument
1191 readColor(gl::ColorF *dst, const R16G16S *src) argument
1199 readColor(gl::ColorI *dst, const R16G16S *src) argument
1207 writeColor(R16G16S *dst, const gl::ColorF *src) argument
1213 writeColor(R16G16S *dst, const gl::ColorI *src) argument
1232 readColor(gl::ColorF *dst, const R16G16B16S *src) argument
1240 readColor(gl::ColorI *dst, const R16G16B16S *src) argument
1248 writeColor(R16G16B16S *dst, const gl::ColorF *src) argument
1255 writeColor(R16G16B16S *dst, const gl::ColorI *src) argument
1277 readColor(gl::ColorF *dst, const R16G16B16A16S *src) argument
1285 readColor(gl::ColorI *dst, const R16G16B16A16S *src) argument
1293 writeColor(R16G16B16A16S *dst, const gl::ColorF *src) argument
1301 writeColor(R16G16B16A16S *dst, const gl::ColorI *src) argument
1322 readColor(gl::ColorF *dst, const R32S *src) argument
1330 readColor(gl::ColorI *dst, const R32S *src) argument
1338 writeColor(R32S *dst, const gl::ColorF *src) argument
1343 writeColor(R32S *dst, const gl::ColorI *src) argument
1359 readColor(gl::ColorF *dst, const R32G32S *src) argument
1367 readColor(gl::ColorI *dst, const R32G32S *src) argument
1375 writeColor(R32G32S *dst, const gl::ColorF *src) argument
1381 writeColor(R32G32S *dst, const gl::ColorI *src) argument
1400 readColor(gl::ColorF *dst, const R32G32B32S *src) argument
1408 readColor(gl::ColorI *dst, const R32G32B32S *src) argument
1416 writeColor(R32G32B32S *dst, const gl::ColorF *src) argument
1423 writeColor(R32G32B32S *dst, const gl::ColorI *src) argument
1445 readColor(gl::ColorF *dst, const R32G32B32A32S *src) argument
1453 readColor(gl::ColorI *dst, const R32G32B32A32S *src) argument
1461 writeColor(R32G32B32A32S *dst, const gl::ColorF *src) argument
1469 writeColor(R32G32B32A32S *dst, const gl::ColorI *src) argument
1493 readColor(gl::ColorF *dst, const A16B16G16R16F *src) argument
1501 writeColor(A16B16G16R16F *dst, const gl::ColorF *src) argument
1525 readColor(gl::ColorF *dst, const R16G16B16A16F *src) argument
1533 writeColor(R16G16B16A16F *dst, const gl::ColorF *src) argument
1554 readColor(gl::ColorF *dst, const R16F *src) argument
1562 writeColor(R16F *dst, const gl::ColorF *src) argument
1577 readColor(gl::ColorF *dst, const A16F *src) argument
1585 writeColor(A16F *dst, const gl::ColorF *src) argument
1600 readColor(gl::ColorF *dst, const L16F *src) argument
1609 writeColor(L16F *dst, const gl::ColorF *src) argument
1625 readColor(gl::ColorF *dst, const L16A16F *src) argument
1634 writeColor(L16A16F *dst, const gl::ColorF *src) argument
1652 readColor(gl::ColorF *dst, const R16G16F *src) argument
1660 writeColor(R16G16F *dst, const gl::ColorF *src) argument
1679 readColor(gl::ColorF *dst, const R16G16B16F *src) argument
1687 writeColor(R16G16B16F *dst, const gl::ColorF *src) argument
1709 readColor(gl::ColorF *dst, const A32B32G32R32F *src) argument
1717 writeColor(A32B32G32R32F *dst, const gl::ColorF *src) argument
1741 readColor(gl::ColorF *dst, const R32G32B32A32F *src) argument
1749 writeColor(R32G32B32A32F *dst, const gl::ColorF *src) argument
1770 readColor(gl::ColorF *dst, const R32F *src) argument
1778 writeColor(R32F *dst, const gl::ColorF *src) argument
1793 readColor(gl::ColorF *dst, const A32F *src) argument
1801 writeColor(A32F *dst, const gl::ColorF *src) argument
1816 readColor(gl::ColorF *dst, const L32F *src) argument
1824 writeColor(L32F *dst, const gl::ColorF *src) argument
1840 readColor(gl::ColorF *dst, const L32A32F *src) argument
1848 writeColor(L32A32F *dst, const gl::ColorF *src) argument
1866 readColor(gl::ColorF *dst, const R32G32F *src) argument
1874 writeColor(R32G32F *dst, const gl::ColorF *src) argument
1893 readColor(gl::ColorF *dst, const R32G32B32F *src) argument
1901 writeColor(R32G32B32F *dst, const gl::ColorF *src) argument
1923 readColor(gl::ColorF *dst, const R10G10B10A2 *src) argument
1931 readColor(gl::ColorUI *dst, const R10G10B10A2 *src) argument
1939 writeColor(R10G10B10A2 *dst, const gl::ColorF *src) argument
1947 writeColor(R10G10B10A2 *dst, const gl::ColorUI *src) argument
1971 readColor(gl::ColorF *dst, const R9G9B9E5 *src) argument
1977 writeColor(R9G9B9E5 *dst, const gl::ColorF *src) argument
2004 readColor(gl::ColorF *dst, const R11G11B10F *src) argument
2012 writeColor(R11G11B10F *dst, const gl::ColorF *src) argument
[all...]
/external/chromium_org/gpu/config/
H A Dgpu_util_unittest.cc13 std::set<int> src; local
16 MergeFeatureSets(&dst, src);
21 std::set<int> src; local
25 MergeFeatureSets(&dst, src);
30 std::set<int> src; local
32 src.insert(1);
35 MergeFeatureSets(&dst, src);
40 std::set<int> src; local
42 src.insert(1);
45 MergeFeatureSets(&dst, src);
[all...]
/external/chromium_org/third_party/cld/encodings/compact_lang_det/win/
H A Dcld_utf8statetable.cc21 const uint8** src,
27 const uint8* lsrc = *src;
37 *src += 1;
43 *src += 2;
51 *src += 3;
61 *src += 4;
65 *src += 1;
79 const uint8** src,
85 const uint8* lsrc = *src;
95 *src
20 UTF8GenericProperty(const UTF8PropObj* st, const uint8** src, int* srclen) argument
78 UTF8GenericPropertyBigOneByte(const UTF8PropObj* st, const uint8** src, int* srclen) argument
141 const uint8* src = isrc; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/targets/dri-swrast/
H A DMakefile11 $(TOP)/src/gallium/state_trackers/dri/sw/libdrisw.a \
12 $(TOP)/src/gallium/winsys/sw/dri/libswdri.a \
13 $(TOP)/src/gallium/drivers/softpipe/libsoftpipe.a \
14 $(TOP)/src/gallium/drivers/trace/libtrace.a \
15 $(TOP)/src/gallium/drivers/rbug/librbug.a
18 PIPE_DRIVERS += $(TOP)/src/gallium/drivers/llvmpipe/libllvmpipe.a
23 $(TOP)/src/mesa/drivers/dri/common/utils.c \
24 $(TOP)/src/mesa/drivers/dri/common/drisw_util.c \
25 $(TOP)/src/mesa/drivers/dri/common/xmlconfig.c
37 -I$(TOP)/src/galliu
[all...]
/external/chromium_org/tools/gyp/tools/
H A Dgraphviz.py34 src = to_visit.pop()
35 if src in target_edges:
37 target_edges[src] = edges[src]
38 to_visit.extend(edges[src])
49 for src, dst in edges.items():
50 build_file, target_name, toolset = ParseTarget(src)
51 files[build_file].append(src)
79 for src, dsts in edges.items():
81 print ' "%s" -> "%s"' % (src, ds
[all...]
/external/clang/INPUTS/
H A Dstpcpy-test.c3 #define __stpcpy(dest, src) (__extension__ (__builtin_constant_p (src) ? (__string2_1bptr_p (src) && strlen (src) + 1 <= 8 ? __stpcpy_small (dest, __stpcpy_args (src), strlen (src) + 1) : ((char *) __mempcpy (dest, src, strlen (src) + 1) - 1)) : __stpcpy (dest, src)))
4 #define stpcpy(dest, src) __stpcp
[all...]
/external/elfutils/0.153/libelf/
H A Dgelf_update_shdr.c62 gelf_update_shdr (Elf_Scn *scn, GElf_Shdr *src) argument
67 if (scn == NULL || src == NULL)
84 if (unlikely (src->sh_flags > 0xffffffffull)
85 || unlikely (src->sh_addr > 0xffffffffull)
86 || unlikely (src->sh_offset > 0xffffffffull)
87 || unlikely (src->sh_size > 0xffffffffull)
88 || unlikely (src->sh_addralign > 0xffffffffull)
89 || unlikely (src->sh_entsize > 0xffffffffull))
96 shdr->name = src->name
120 (void) memcpy (shdr, src, sizeo
[all...]
/external/libsepol/
H A DMakefile2 $(MAKE) -C src
7 $(MAKE) -C src install
12 $(MAKE) -C src relabel
15 $(MAKE) -C src clean
20 $(MAKE) -C src $@
/external/mesa3d/src/gallium/targets/dri-swrast/
H A DMakefile11 $(TOP)/src/gallium/state_trackers/dri/sw/libdrisw.a \
12 $(TOP)/src/gallium/winsys/sw/dri/libswdri.a \
13 $(TOP)/src/gallium/drivers/softpipe/libsoftpipe.a \
14 $(TOP)/src/gallium/drivers/trace/libtrace.a \
15 $(TOP)/src/gallium/drivers/rbug/librbug.a
18 PIPE_DRIVERS += $(TOP)/src/gallium/drivers/llvmpipe/libllvmpipe.a
23 $(TOP)/src/mesa/drivers/dri/common/utils.c \
24 $(TOP)/src/mesa/drivers/dri/common/drisw_util.c \
25 $(TOP)/src/mesa/drivers/dri/common/xmlconfig.c
37 -I$(TOP)/src/galliu
[all...]
/external/valgrind/main/none/tests/s390x/
H A Dcu42.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...]

Completed in 1970 milliseconds

<<11121314151617181920>>