Searched refs:destination (Results 1 - 25 of 539) sorted by last modified time

1234567891011>>

/external/zlib/src/contrib/dotzlib/DotZLib/
H A DCircularBuffer.cs61 public int Get(byte[] destination, int offset, int count) argument
65 destination[offset + i] = _buffer[(_head+i) % _capacity];
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPNode.java444 * qualifier )into and add it to the destination node.
446 * @param destination the node to add the cloned subtree
448 public void cloneSubtree(XMPNode destination) argument
455 destination.addChild((XMPNode) child.clone());
461 destination.addQualifier((XMPNode) qualifier.clone());
H A DXMPUtilsImpl.java508 * @param destination The destination XMP object.
511 * @param deleteEmptyValues Delete destination values if source property is empty.
514 public static void appendProperties(XMPMeta source, XMPMeta destination, argument
519 ParameterAsserts.assertImplementation(destination);
522 XMPMetaImpl dest = (XMPMetaImpl) destination;
528 // Make sure we have a destination schema node
590 * @param destXMP The destination XMP object.
592 * @param destParent the parent of the destination node
595 * in the destination objec
[all...]
/external/valgrind/main/exp-bbv/tests/x86/
H A Drep_prefix.S42 mov $buffer1, %edi # set destination
59 mov $buffer1, %edi # set destination
76 mov $buffer1, %edi # set destination
/external/valgrind/main/memcheck/tests/
H A Doverlap.stderr.exp1 Source and destination overlap in memcpy(0x........, 0x........, 21)
5 Source and destination overlap in memcpy(0x........, 0x........, 21)
9 Source and destination overlap in strncpy(0x........, 0x........, 21)
13 Source and destination overlap in strncpy(0x........, 0x........, 21)
17 Source and destination overlap in strcpy(0x........, 0x........)
21 Source and destination overlap in strncat(0x........, 0x........, 21)
25 Source and destination overlap in strncat(0x........, 0x........, 21)
/external/tcpdump/
H A Dprint-eigrp.c137 u_int8_t destination; /* variable length [1-4] bytes encoding */ member in struct:eigrp_tlv_ip_int_t
157 u_int8_t destination; /* variable length [1-4] bytes encoding */ member in struct:eigrp_tlv_ip_ext_t
334 memcpy(prefix,&tlv_ptr.eigrp_tlv_ip_int->destination,byte_length);
363 memcpy(prefix,&tlv_ptr.eigrp_tlv_ip_ext->destination,byte_length);
H A Dprint-sctp.c128 destPort = EXTRACT_16BITS(&sctpPktHdr->destination);
H A DsctpHeader.h64 u_int16_t destination; member in struct:sctpHeader
/external/sonivox/arm-hybrid-22k/lib_src/
H A DARM-E_filter_gnu.s64 @ Setup passed parameters in their destination registers
/external/sonivox/arm-wt-22k/lib_src/
H A DARM-E_filter_gnu.s64 @ Setup passed parameters in their destination registers
H A Deas_mdls.c250 EAS_U16 destination; member in struct:s_connection_tag
1920 EAS_U16 destination; local
1950 if ((result = EAS_HWGetWord(pDLSData->hwInstData, pDLSData->fileHandle, &destination, EAS_FALSE)) != EAS_SUCCESS)
1961 (connTable[i].destination == destination) &&
/external/skia/src/animator/
H A DSkMatrixParts.cpp161 SK_MEMBER(destination, Rect),
170 source(NULL), destination(NULL) {
177 if (source == NULL || destination == NULL)
180 temp.setRectToRect(source->fRect, destination->fRect,
198 if (destination) {
199 SkDebugf("%*s<destination>\n", SkDisplayList::fIndent, "");
201 destination->dump(maker);
203 SkDebugf("%*s</destination>\n", SkDisplayList::fIndent, "");
214 SkASSERT(destination == NULL);
215 return getMember("destination");
[all...]
H A DSkMatrixParts.h99 SkDrawRect* destination; member in class:SkRectToRect
114 SkPolygon* destination; member in class:SkPolyToPoly
/external/skia/src/core/
H A DSkImageGeneratorPriv.h17 * the generator. If it succeeds, it will modify destination
23 * installed into destination is destroyed, it will call
27 * @param destination Upon success, this bitmap will be
36 bool SkInstallDiscardablePixelRef(SkImageGenerator*, SkBitmap* destination,
/external/skia/src/opts/
H A DSkBlitRect_opts_SSE2.cpp16 static void BlitRect32_OpaqueNarrow_SSE2(SkPMColor* SK_RESTRICT destination, argument
24 SkPMColor* dst = destination;
40 destination = (uint32_t*)((char*)destination + rowBytes);
50 static void BlitRect32_OpaqueWide_SSE2(SkPMColor* SK_RESTRICT destination, argument
61 SkPMColor* dst = destination;
109 destination = (uint32_t*)((char*)destination + rowBytes);
113 void ColorRect32_SSE2(SkPMColor* destination, argument
123 BlitRect32_OpaqueNarrow_SSE2(destination, widt
[all...]
/external/smack/src/org/jivesoftware/smack/util/
H A DBase64.java353 * and writes the resulting four Base64 bytes to <var>destination</var>.
354 * The source and destination arrays can be manipulated
360 * the <var>destination</var> array.
369 * @param destination the array to hold the conversion
371 * @return the <var>destination</var> array
376 byte[] destination, int destOffset, int options )
398 destination[ destOffset ] = ALPHABET[ (inBuff >>> 18) ];
399 destination[ destOffset + 1 ] = ALPHABET[ (inBuff >>> 12) & 0x3f ];
400 destination[ destOffset + 2 ] = ALPHABET[ (inBuff >>> 6) & 0x3f ];
401 destination[ destOffse
374 encode3to4( byte[] source, int srcOffset, int numSigBytes, byte[] destination, int destOffset, int options ) argument
727 decode4to3( byte[] source, int srcOffset, byte[] destination, int destOffset, int options ) argument
[all...]
/external/smali/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/external/sfntly/cpp/src/test/
H A Dopen_type_data_test.cc56 WritableFontDataPtr destination = new WritableFontData(destination_array); local
58 int32_t length = source->CopyTo(destination);
/external/skia/include/core/
H A DSkImageGenerator.h21 * the generator. If it succeeds, it will modify destination
27 * installed into destination is destroyed, it will call
31 * @param destination Upon success, this bitmap will be
36 SK_API bool SkInstallDiscardablePixelRef(SkImageGenerator*, SkBitmap* destination);
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/qemu/distrib/sdl-1.2.15/Xcode/
H A Dpackage39 echo ${prog}: -d option requires destination directory.
/external/qemu/distrib/sdl-1.2.15/src/video/gem/
H A DSDL_gemvideo.c427 /* Setup destination mfdb */
874 void *source,*destination; local
887 destination = destscr;
888 destination += destpitch * rects[i].y;
889 destination += x1;
892 source, destination,
/external/qemu/distrib/sdl-1.2.15/src/video/riscos/
H A DSDL_riscosASM.S33 ; entry a1 -> destination
/external/qemu/distrib/sdl-1.2.15/src/video/xbios/
H A DSDL_xbios.c881 void *source,*destination; local
894 destination = XBIOS_screens[XBIOS_fbnum];
895 destination += XBIOS_pitch * rects[i].y;
896 destination += x1;
901 destination,
936 /* Center on destination screen */
/external/protobuf/src/google/protobuf/
H A Dextension_set_unittest.cc190 unittest::TestAllTypes destination; local
198 EXPECT_TRUE(destination.ParseFromString(data));
199 TestUtil::ExpectAllFieldsSet(destination);
211 unittest::TestAllTypes destination; local
222 EXPECT_TRUE(destination.ParseFromString(data));
223 TestUtil::ExpectAllFieldsSet(destination);
234 unittest::TestPackedTypes destination; local
242 EXPECT_TRUE(destination.ParseFromString(data));
243 TestUtil::ExpectPackedFieldsSet(destination);
255 unittest::TestPackedTypes destination; local
273 unittest::TestAllExtensions destination; local
285 unittest::TestPackedExtensions destination; local
[all...]

Completed in 811 milliseconds

1234567891011>>