| /development/scripts/app_engine_server/ |
| D | redirects.yaml | 11 # - dst: The path to redirect to. If the path begins with a slash, 33 # dst: /bar 39 # dst: /droids/\1 47 # dst: http://www.google.com 57 dst: /about/versions/android- 63 dst: /tools/extras/oem-usb.html 68 dst: /sdk/installing/index.html 74 dst: /tools/extras/support-library.html 80 dst: /tools/sdk/eclipse-adt.html 86 dst: /tools/sdk/tools-notes.html [all …]
|
| D | memcache_zipserve.py | 104 REDIRECT_DST = 'dst' # Name of the 'destination' attribute for 322 'Dst: %s',
|
| /development/ndk/platforms/android-3/include/linux/ |
| D | nodemask.h | 22 #define node_set(node, dst) __node_set((node), &(dst)) argument 23 #define node_clear(node, dst) __node_clear((node), &(dst)) argument 24 #define nodes_setall(dst) __nodes_setall(&(dst), MAX_NUMNODES) argument 25 #define nodes_clear(dst) __nodes_clear(&(dst), MAX_NUMNODES) argument 28 #define nodes_and(dst, src1, src2) __nodes_and(&(dst), &(src1), &(src2), MAX_NUMNODES) argument 29 #define nodes_or(dst, src1, src2) __nodes_or(&(dst), &(src1), &(src2), MAX_NUMNODES) argument 30 #define nodes_xor(dst, src1, src2) __nodes_xor(&(dst), &(src1), &(src2), MAX_NUMNODES) argument 31 #define nodes_andnot(dst, src1, src2) __nodes_andnot(&(dst), &(src1), &(src2), MAX_NUMNODES) argument 32 #define nodes_complement(dst, src) __nodes_complement(&(dst), &(src), MAX_NUMNODES) argument 39 #define nodes_shift_right(dst, src, n) __nodes_shift_right(&(dst), &(src), (n), MAX_NUMNODES) argument [all …]
|
| D | cpumask.h | 21 #define cpu_set(cpu, dst) __cpu_set((cpu), &(dst)) argument 22 #define cpu_clear(cpu, dst) __cpu_clear((cpu), &(dst)) argument 23 #define cpus_setall(dst) __cpus_setall(&(dst), NR_CPUS) argument 24 #define cpus_clear(dst) __cpus_clear(&(dst), NR_CPUS) argument 27 #define cpus_and(dst, src1, src2) __cpus_and(&(dst), &(src1), &(src2), NR_CPUS) argument 28 #define cpus_or(dst, src1, src2) __cpus_or(&(dst), &(src1), &(src2), NR_CPUS) argument 29 #define cpus_xor(dst, src1, src2) __cpus_xor(&(dst), &(src1), &(src2), NR_CPUS) argument 30 #define cpus_andnot(dst, src1, src2) __cpus_andnot(&(dst), &(src1), &(src2), NR_CPUS) argument 31 #define cpus_complement(dst, src) __cpus_complement(&(dst), &(src), NR_CPUS) argument 38 #define cpus_shift_right(dst, src, n) __cpus_shift_right(&(dst), &(src), (n), NR_CPUS) argument [all …]
|
| D | msm_mdp.h | 70 struct mdp_img dst; member
|
| D | skbuff.h | 134 struct dst_entry *dst; member
|
| /development/ide/xcode/ports/ |
| D | SkBitmap_Mac.cpp | 13 static void convertGL32_to_Mac32(uint32_t dst[], const SkBitmap& bm) { in convertGL32_to_Mac32() argument 14 memcpy(dst, bm.getPixels(), bm.getSize()); in convertGL32_to_Mac32() 17 uint32_t* stop = dst + (bm.getSize() >> 2); in convertGL32_to_Mac32() 19 while (dst < stop) { in convertGL32_to_Mac32() 20 *dst++ = src[2] << 24 | src[1] << 16 | src[0] << 8 | src[3] << 0; in convertGL32_to_Mac32() 25 static void convert565_to_32(uint32_t dst[], const SkBitmap& bm) { in convert565_to_32() argument 35 *dst++ = (b << 24) | (g << 16) | (r << 8) | 0xFF; in convert565_to_32() 40 static void convert4444_to_555(uint16_t dst[], const uint16_t src[], int count) in convert4444_to_555() argument 61 *dst++ = c; in convert4444_to_555()
|
| /development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
| D | BitmapPixels.java | 112 IntBuffer dst = IntBuffer.allocate(n*n); in makeBuffer() local 114 dst.put(src); in makeBuffer() 116 dst.rewind(); in makeBuffer() 117 return dst; in makeBuffer() 121 ShortBuffer dst = ShortBuffer.allocate(n*n); in makeBuffer() local 123 dst.put(src); in makeBuffer() 125 dst.rewind(); in makeBuffer() 126 return dst; in makeBuffer()
|
| D | BitmapMesh.java | 88 float[] dst = mVerts; in warp() local 102 dst[i+0] = cx; in warp() 103 dst[i+1] = cy; in warp() 105 dst[i+0] = x + dx * pull; in warp() 106 dst[i+1] = y + dy * pull; in warp()
|
| D | Xfermodes.java | 36 // create a bitmap with a circle, used for the "dst" image 76 new PorterDuffXfermode(PorterDuff.Mode.DST), 93 "Clear", "Src", "Dst", "SrcOver", 142 // draw the src/dst example into our offscreen bitmap in onDraw()
|
| D | PolyToPoly.java | 41 private void doDraw(Canvas canvas, float src[], float dst[]) { in doDraw() argument 43 mMatrix.setPolyToPoly(src, 0, dst, 0, src.length >> 1); in doDraw()
|
| /development/ndk/platforms/android-9/arch-x86/include/asm/ |
| D | mpspec_32.h | 37 #define physids_and(dst, src1, src2) bitmap_and((dst).mask, (src1).mask, (src2).mask, MAX_APICS) argument 39 #define physids_or(dst, src1, src2) bitmap_or((dst).mask, (src1).mask, (src2).mask, MAX_APICS) argument 41 #define physids_complement(dst, src) bitmap_complement((dst).mask,(src).mask, MAX_APICS) argument
|
| D | cacheflush.h | 39 #define copy_to_user_page(vma, page, vaddr, dst, src, len) memcpy(dst, src, len) argument 40 #define copy_from_user_page(vma, page, vaddr, dst, src, len) memcpy(dst, src, len) argument
|
| /development/ndk/platforms/android-3/arch-arm/include/asm/ |
| D | cacheflush.h | 77 …to_user_page(vma, page, vaddr, dst, src, len) do { memcpy(dst, src, len); flush_ptrace_acces… argument 79 #define copy_from_user_page(vma, page, vaddr, dst, src, len) do { memcpy(dst, src, len); } wh… argument
|
| /development/build/tools/ |
| D | mk_sources_zip.py | 37 self.DST = None 116 p.DST = args[1] 226 p.zipfile = p.DST + "_temp_dir" 233 p.zipfile = z = zipfile.ZipFile(p.DST, "w", zipfile.ZIP_DEFLATED) 245 shutil.move(os.path.join(p.zipfile, "_temp.zip"), p.DST) 250 print "%s: %d java files copied" % (p.DST, p.CNT_USED) 252 print "%s: %d java files ignored" % (p.DST, p.CNT_NOPKG)
|
| D | mk_sdk_repo_xml.sh | 151 DST=$2 160 if [[ "${USED/$DST/}" == "$USED" ]]; then 161 USED="$USED $DST" 162 RESULT="$RESULT $DST $VALUE" 224 DST="$1" 226 DST="${SRC/*:/}" 306 <sdk:url>$DST</sdk:url>
|
| /development/ndk/platforms/android-3/include/net/ |
| D | if_ieee1394.h | 63 u_int8_t ih_uid[8]; /* dst/src uid */ 64 u_int8_t ih_maxrec; /* dst maxrec for tx */ 66 u_int8_t ih_offset[6]; /* dst offset */
|
| /development/ndk/platforms/android-3/include/linux/netfilter_ipv4/ |
| D | ip_conntrack_tuple.h | 76 } dst; member 79 #define IP_CT_TUPLE_U_BLANK(tuple) do { (tuple)->src.u.all = 0; (tuple)->dst.u.all = 0; } w…
|
| D | ipt_iprange.h | 28 struct ipt_iprange dst; member
|
| D | ip_tables.h | 29 struct in_addr src, dst; member
|
| /development/samples/BrowserPlugin/jni/ |
| D | RenderingThread.cpp | 191 uint8_t* dst = &(img[(buffer.stride * (row + 0) + 0) * bpp]); in updateNativeWindow() local 193 memcpy(dst, src, bpp * bitmap.width()); in updateNativeWindow()
|
| /development/ndk/platforms/android-3/include/linux/netfilter/ |
| D | xt_conntrack.h | 50 } dst; member
|
| /development/ndk/platforms/android-3/include/linux/netfilter_ipv6/ |
| D | ip6_tables.h | 30 struct in6_addr src, dst; member
|
| /development/sdk/ |
| D | api-versions.xml | 8658 <field name="DST" />
|