Searched refs:destination (Results 151 - 175 of 465) sorted by relevance

1234567891011>>

/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DStringSearch.java636 * @param destination target array
637 * @param offset destination offset to add value
641 * @return new destination array, destination if there was no new allocation
643 private static int[] addToIntArray(int[] destination, int offset, int destinationlength, argument
649 System.arraycopy(destination, 0, temp, 0, offset);
650 destination = temp;
652 destination[offset] = value;
653 return destination;
661 * @param destination targe
668 addToLongArray(long[] destination, int offset, int destinationlength, long value, int increments) argument
[all...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
H A DStringSearch.java653 * @param destination target array
654 * @param offset destination offset to add value
658 * @return new destination array, destination if there was no new allocation
660 private static int[] addToIntArray(int[] destination, int offset, int destinationlength, argument
666 System.arraycopy(destination, 0, temp, 0, offset);
667 destination = temp;
669 destination[offset] = value;
670 return destination;
678 * @param destination targe
685 addToLongArray(long[] destination, int offset, int destinationlength, long value, int increments) argument
[all...]
/external/libmojo/mojo/edk/system/
H A Dnode_channel.cc116 ports::NodeName destination; member in struct:mojo::edk::__anon10864::RelayPortsMessageData
378 void NodeChannel::RelayPortsMessage(const ports::NodeName& destination, argument
390 data->destination = destination;
413 data->destination = destination;
680 std::make_pair(data->destination, std::move(message)));
686 data->destination, std::move(message));
798 ports::NodeName destination = pending_relays.front().first; local
802 destination, st
[all...]
H A Ddata_pipe_consumer_dispatcher.h68 bool EndSerialize(void* destination,
H A Ddata_pipe_producer_dispatcher.h67 bool EndSerialize(void* destination,
H A Dmessage_pipe_dispatcher.h74 bool EndSerialize(void* destination,
/external/ImageMagick/MagickCore/
H A Dmemory.c674 % destination. Copying between objects that overlap will take place
675 % correctly. It returns destination.
679 % void *CopyMagickMemory(void *destination,const void *source,
684 % o destination: the destination.
691 MagickExport void *CopyMagickMemory(void *destination,const void *source,
700 assert(destination != (void *) NULL);
703 q=(unsigned char *) destination;
707 default: return(memcpy(destination,source,size));
716 case 0: return(destination);
680 CopyMagickMemory(void *destination,const void *source, const size_t size) argument
[all...]
/external/libmicrohttpd/src/microhttpd/
H A Dpostprocessor.c579 * case, copy a copy of $value to destination.
581 * If destination is already non-NULL, do nothing.
586 char **destination)
594 if (NULL != *destination)
611 *destination = malloc (vlen);
612 if (NULL == *destination)
614 (*destination)[vlen - 1] = '\0';
615 memcpy (*destination, &spos[klen + 2], vlen - 1);
584 try_get_value(const char *buf, const char *key, char **destination) argument
/external/protobuf/java/core/src/test/java/com/google/protobuf/
H A DUnknownFieldSetTest.java178 TestEmptyMessage destination =
197 destination.toString());
229 TestAllTypes destination = TestAllTypes.parseFrom(data);
231 TestUtil.assertAllFieldsSet(destination);
232 assertEquals(1, destination.getUnknownFields().asMap().size());
235 destination.getUnknownFields().getField(123456);
H A DMapTest.java81 private void copyMapValues(TestMap source, TestMap.Builder destination) { argument
82 destination
328 TestMap.Builder destination = TestMap.newBuilder();
329 copyMapValues(source, destination);
330 assertMapValuesSet(destination.build());
342 TestMap destination = destinationBuilder.build();
344 assertEquals(0, destination.getInt32ToEnumFieldValue().get(0).intValue());
345 assertEquals(1, destination.getInt32ToEnumFieldValue().get(1).intValue());
346 assertEquals(1000, destination.getInt32ToEnumFieldValue().get(2).intValue());
/external/autotest/database/
H A Ddatabase_connection.py15 def _copy_exceptions(source, destination):
18 setattr(destination, exception_name,
24 setattr(destination, exception_name,
/external/valgrind/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/ImageMagick/coders/
H A Dmpeg.c368 const char *destination)
394 Return if destination file already exists and is not empty.
397 assert(destination != (char *) NULL);
398 status=GetPathAttributes(destination,&attributes);
402 Copy source file to destination.
404 destination_file=open_utf8(destination,O_WRONLY | O_BINARY | O_CREAT,S_MODE);
360 CopyDelegateFile(const char *source, const char *destination) argument
/external/autotest/client/cros/
H A Dpower_utils.py64 def _call_dbus_method(destination, path, interface, method_name, args):
67 '--dest=%s %s %s.%s %s') % (destination, path, interface,
80 _call_dbus_method(destination='org.chromium.PowerManager',
93 _call_dbus_method(destination='org.chromium.LibCrosService',
/external/compiler-rt/lib/builtins/
H A Dfp_trunc_impl.inc81 // destination format. We can convert by simply right-shifting with
107 // a underflows on conversion to the destination type or is an exact
/external/compiler-rt/make/
H A Dutil.mk72 # if 'src' is undefined. The destination variable must be undefined.
74 $(call AssertValue,$(call IsUndefined,$(2)),destination is already defined)\
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DAbstractIteratorTester.java286 private E transferElement(Stack<E> source, Stack<E> destination) { argument
291 destination.push(source.pop());
292 stackWithLastReturnedElementAtTop = destination;
293 return destination.peek();
/external/libavc/common/arm/
H A Dih264_inter_pred_luma_copy_a9q.s35 @* UWORD8 pointer to the destination
41 @* integer destination stride
188 @ * @brief This function copies a 4x4 block to destination
191 @ * Copies a 4x4 block to destination, where both src and dst are interleaved
/external/protobuf/python/google/protobuf/internal/
H A Dunknown_fields_test.py222 destination = unittest_pb2.TestEmptyMessage()
223 destination.ParseFromString(message.SerializeToString())
225 destination.MergeFrom(source)
228 message.ParseFromString(destination.SerializeToString())
/external/protobuf/src/google/protobuf/util/
H A Dfield_mask_util.h112 const MergeOptions& options, Message* destination);
158 // in the destination message, set this flag to true. When this flag is set,
160 // destination.
166 // repeated field to the destination repeated field. If you only want
/external/tcpdump/
H A Dprint-eigrp.c131 uint8_t destination; /* variable length [1-4] bytes encoding */ member in struct:eigrp_tlv_ip_int_t
151 uint8_t destination; /* variable length [1-4] bytes encoding */ member in struct:eigrp_tlv_ip_ext_t
328 memcpy(prefix,&tlv_ptr.eigrp_tlv_ip_int->destination,byte_length);
357 memcpy(prefix,&tlv_ptr.eigrp_tlv_ip_ext->destination,byte_length);
/external/webrtc/webrtc/base/
H A Dhttpcommon.h203 static int Encode(const CTYPE* source, CTYPE* destination, size_t len);
204 static int Encode(const string& source, string& destination);
205 static int Decode(const CTYPE* source, CTYPE* destination, size_t len);
206 static int Decode(const string& source, string& destination);
/external/webrtc/webrtc/modules/audio_device/android/
H A Daudio_device_unittest.cc95 virtual void Read(void* destination, size_t num_frames) = 0;
128 // |num_frames| (<=> 10ms) to the |destination| byte buffer.
129 void Read(void* destination, size_t num_frames) override {
130 memcpy(destination,
199 // data into |destination| and delete the utilized memory allocation.
201 void Read(void* destination, size_t num_frames) override {
206 memset(destination, 0, bytes_per_buffer_);
210 memcpy(destination,
263 // Insert periodic impulses in first two samples of |destination|.
264 void Read(void* destination, size_
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DFieldMatrix.java157 * @param destination The arrays where the submatrix data should be copied
160 * @exception IllegalArgumentException if the destination array is too small
163 T[][] destination)
172 * @param destination The arrays where the submatrix data should be copied
175 * @exception IllegalArgumentException if the destination array is too small
177 void copySubMatrix(int[] selectedRows, int[] selectedColumns, T[][] destination) argument
162 copySubMatrix(int startRow, int endRow, int startColumn, int endColumn, T[][] destination) argument
/external/autotest/server/cros/bluetooth/
H A Dbluetooth_device.py626 def copy_logs(self, destination):
629 @param destination: destination directory for the logs.
632 self.host.collect_logs(self.XMLRPC_LOG_PATH, destination)

Completed in 1674 milliseconds

1234567891011>>