Searched refs:destination (Results 1 - 25 of 465) sorted by relevance

1234567891011>>

/external/google-breakpad/src/common/windows/
H A Dstring_utils-inl.h73 // not fail if source is longer than destination_size. The destination
75 static void safe_wcscpy(wchar_t *destination, size_t destination_size,
80 // are longer than destination_size. The destination buffer is always
82 static void safe_wcsncpy(wchar_t *destination, size_t destination_size,
105 inline void WindowsStringUtils::safe_wcscpy(wchar_t *destination, argument
109 wcscpy_s(destination, destination_size, source);
112 // wcsncpy doesn't 0-terminate the destination buffer if the source string
113 // is longer than size. Ensure that the destination is 0-terminated.
114 wcsncpy(destination, source, destination_size);
115 if (destination
121 safe_wcsncpy(wchar_t *destination, size_t destination_size, const wchar_t *source, size_t count) argument
[all...]
/external/webrtc/webrtc/common_audio/resampler/
H A Dpush_sinc_resampler.cc36 int16_t* destination,
44 FloatS16ToS16(float_buffer_.get(), destination_frames_, destination);
51 float* destination,
74 resampler_->Resample(resampler_->ChunkSize(), destination);
76 resampler_->Resample(destination_frames_, destination);
81 void PushSincResampler::Run(size_t frames, float* destination) { argument
89 std::memset(destination, 0, frames * sizeof(*destination));
95 std::memcpy(destination, source_ptr_, frames * sizeof(*destination));
34 Resample(const int16_t* source, size_t source_length, int16_t* destination, size_t destination_capacity) argument
49 Resample(const float* source, size_t source_length, float* destination, size_t destination_capacity) argument
[all...]
H A Dsinusoidal_linear_chirp_source.cc34 void SinusoidalLinearChirpSource::Run(size_t frames, float* destination) { argument
38 destination[i] = 0;
42 destination[i] = 0;
46 destination[i] =
/external/v8/src/crankshaft/x64/
H A Dlithium-gap-resolver-x64.cc48 // the same as the destination, the destination is ignored and
70 // Clear this move's destination to indicate a pending move. The actual
71 // destination is saved in a stack-allocated local. Recursion may allow
74 LOperand* destination = moves_[index].destination(); local
79 // as this one's destination blocks this one so recursively perform all
83 if (other_move.Blocks(destination) && !other_move.IsPending()) {
89 // not be swapped). Since this move's destination is B and there is
98 // pending, so restore its destination
129 LOperand* destination = moves_[i].destination(); local
143 LOperand* destination = moves_[index].destination(); local
239 LOperand* destination = moves_[index].destination(); local
[all...]
/external/v8/src/crankshaft/x87/
H A Dlithium-gap-resolver-x87.cc54 // the same as the destination, the destination is ignored and
76 // Clear this move's destination to indicate a pending move. The actual
77 // destination is saved on the side.
79 LOperand* destination = moves_[index].destination(); local
84 // as this one's destination blocks this one so recursively perform all
88 if (other_move.Blocks(destination) && !other_move.IsPending()) {
94 // not be swapped). Since this move's destination is B and there is
103 // pending, so restore its destination
134 LOperand* destination = move.destination(); local
148 LOperand* destination = moves_[index].destination(); local
200 LOperand* destination = moves_[i].destination(); local
261 LOperand* destination = moves_[index].destination(); local
364 LOperand* destination = moves_[index].destination(); local
[all...]
/external/parameter-framework/upstream/utility/
H A DBinaryCopy.hpp45 * The source and the destination must have the same storage size (e.g. copying
49 * @tparam Destination the destination type (even if it is a reference, this
52 * @returns the source, reinterpreted as the destination type
65 Destination_ destination; member in union:utility::__anon15557
69 return hack.destination;
/external/vogar/src/vogar/
H A DHostFileCache.java35 private void cp(File source, File destination) { argument
36 List<String> rawResult = new Command.Builder(log).args("cp", source, destination).execute();
39 throw new RuntimeException("Couldn't copy " + source + " to " + destination
44 private void mv(File source, File destination) { argument
45 List<String> rawResult = new Command.Builder(log).args("mv", source, destination).execute();
48 throw new RuntimeException("Couldn't move " + source + " to " + destination
53 public void copyFromCache(String key, File destination) { argument
55 cp(cachedFile, destination);
H A DFileCache.java30 void copyFromCache(String key, File destination); argument
/external/v8/src/crankshaft/mips64/
H A Dlithium-gap-resolver-mips64.cc54 // the same as the destination, the destination is ignored and
75 // its destination. All other moves from the spilled source have been
83 // Clear this move's destination to indicate a pending move. The actual
84 // destination is saved in a stack allocated local. Multiple moves can
87 LOperand* destination = moves_[index].destination(); local
92 // as this one's destination blocks this one so recursively perform all
96 if (other_move.Blocks(destination) && !other_move.IsPending()) {
105 // pending, so restore its destination
127 LOperand* destination = moves_[i].destination(); local
188 LOperand* destination = moves_[index].destination(); local
[all...]
/external/v8/src/crankshaft/ia32/
H A Dlithium-gap-resolver-ia32.cc53 // the same as the destination, the destination is ignored and
75 // Clear this move's destination to indicate a pending move. The actual
76 // destination is saved on the side.
78 LOperand* destination = moves_[index].destination(); local
83 // as this one's destination blocks this one so recursively perform all
87 if (other_move.Blocks(destination) && !other_move.IsPending()) {
93 // not be swapped). Since this move's destination is B and there is
102 // pending, so restore its destination
133 LOperand* destination = move.destination(); local
147 LOperand* destination = moves_[index].destination(); local
199 LOperand* destination = moves_[i].destination(); local
260 LOperand* destination = moves_[index].destination(); local
359 LOperand* destination = moves_[index].destination(); local
[all...]
/external/libmojo/mojo/common/
H A Ddata_pipe_file_utils.cc20 ScopedDataPipeProducerHandle destination,
33 BeginWriteDataRaw(destination.get(), &buffer, &buffer_num_bytes,
39 EndWriteDataRaw(destination.get(), bytes_read);
46 EndWriteDataRaw(destination.get(), 0);
50 result = Wait(destination.get(), MOJO_HANDLE_SIGNAL_WRITABLE,
70 ScopedDataPipeProducerHandle destination,
76 base::Passed(&destination), skip),
19 BlockingCopyFromFile(const base::FilePath& source, ScopedDataPipeProducerHandle destination, uint32_t skip) argument
69 CopyFromFile(const base::FilePath& source, ScopedDataPipeProducerHandle destination, uint32_t skip, base::TaskRunner* task_runner, const base::Callback<void(bool)>& callback) argument
H A Ddata_pipe_utils.h24 // Asynchronously copies data from source to the destination file. The given
29 const base::FilePath& destination,
35 ScopedDataPipeProducerHandle destination,
49 const ScopedDataPipeProducerHandle& destination);
51 // Synchronously copies data from source to the destination file returning true
52 // on success and false on error. In case of an error, |destination| holds the
55 const base::FilePath& destination);
/external/v8/src/crankshaft/arm64/
H A Dlithium-gap-resolver-arm64.cc71 // the same as the destination, the destination is ignored and
92 // Clear this move's destination to indicate a pending move. The actual
93 // destination is saved in a stack allocated local. Multiple moves can
96 LOperand* destination = current_move.destination(); local
101 // as this one's destination blocks this one so recursively perform all
105 if (other_move.Blocks(destination) && !other_move.IsPending()) {
114 // pending, so restore its destination.
115 current_move.set_destination(destination);
136 LOperand* destination = moves_[i].destination(); local
203 LOperand* destination = moves_[index].destination(); local
[all...]
/external/v8/src/crankshaft/mips/
H A Dlithium-gap-resolver-mips.cc54 // the same as the destination, the destination is ignored and
75 // its destination. All other moves from the spilled source have been
83 // Clear this move's destination to indicate a pending move. The actual
84 // destination is saved in a stack allocated local. Multiple moves can
87 LOperand* destination = moves_[index].destination(); local
92 // as this one's destination blocks this one so recursively perform all
96 if (other_move.Blocks(destination) && !other_move.IsPending()) {
105 // pending, so restore its destination
127 LOperand* destination = moves_[i].destination(); local
188 LOperand* destination = moves_[index].destination(); local
[all...]
/external/v8/src/crankshaft/ppc/
H A Dlithium-gap-resolver-ppc.cc56 // the same as the destination, the destination is ignored and
77 // its destination. All other moves from the spilled source have been
85 // Clear this move's destination to indicate a pending move. The actual
86 // destination is saved in a stack allocated local. Multiple moves can
89 LOperand* destination = moves_[index].destination(); local
94 // as this one's destination blocks this one so recursively perform all
98 if (other_move.Blocks(destination) && !other_move.IsPending()) {
107 // pending, so restore its destination
129 LOperand* destination = moves_[i].destination(); local
188 LOperand* destination = moves_[index].destination(); local
[all...]
/external/v8/src/crankshaft/s390/
H A Dlithium-gap-resolver-s390.cc54 // the same as the destination, the destination is ignored and
74 // its destination. All other moves from the spilled source have been
82 // Clear this move's destination to indicate a pending move. The actual
83 // destination is saved in a stack allocated local. Multiple moves can
86 LOperand* destination = moves_[index].destination(); local
91 // as this one's destination blocks this one so recursively perform all
95 if (other_move.Blocks(destination) && !other_move.IsPending()) {
104 // pending, so restore its destination
125 LOperand* destination = moves_[i].destination(); local
182 LOperand* destination = moves_[index].destination(); local
[all...]
/external/llvm/test/MC/ARM/
H A Dthumb2-ldrd.s11 @ CHECK: error: destination operands can't be identical
12 @ CHECK: error: destination operands can't be identical
13 @ CHECK: error: destination operands can't be identical
14 @ CHECK: error: destination operands can't be identical
15 @ CHECK-NOT: error: destination operands can't be identical
/external/v8/src/crankshaft/arm/
H A Dlithium-gap-resolver-arm.cc69 // the same as the destination, the destination is ignored and
90 // its destination. All other moves from the spilled source have been
98 // Clear this move's destination to indicate a pending move. The actual
99 // destination is saved in a stack allocated local. Multiple moves can
102 LOperand* destination = moves_[index].destination(); local
107 // as this one's destination blocks this one so recursively perform all
111 if (other_move.Blocks(destination) && !other_move.IsPending()) {
120 // pending, so restore its destination
142 LOperand* destination = moves_[i].destination(); local
201 LOperand* destination = moves_[index].destination(); local
[all...]
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DDefaultMessageLogFactory.java16 String destination, String timeStamp, boolean isSender,
18 return new MessageLog(message, source, destination, timeStamp,
23 String destination, long timeStamp, boolean isSender,
25 return new MessageLog(message, source, destination, timeStamp,
15 createLogRecord(String message, String source, String destination, String timeStamp, boolean isSender, String firstLine, String tid, String callId, long tsHeaderValue) argument
22 createLogRecord(String message, String source, String destination, long timeStamp, boolean isSender, String firstLine, String tid, String callId, long timestampVal) argument
H A DMessageLog.java51 private String destination; field in class:MessageLog
85 String destination,
96 this.destination = destination;
118 String destination,
129 this.destination = destination;
153 + destination
82 MessageLog( String message, String source, String destination, String timeStamp, boolean isSender, String firstLine, String tid, String callId, long timeStampHeaderValue) argument
115 MessageLog( String message, String source, String destination, long timeStamp, boolean isSender, String firstLine, String tid, String callId, long timestampVal) argument
/external/tpm2/
H A DMemoryLib_fp.h18 #define MemoryCopy(destination, source, size, destSize) \
19 MemoryMove((destination), (source), (size), (destSize))
24 LIB_EXPORT void MemoryMove(void *destination, // OUT: move destination
31 LIB_EXPORT void MemorySet(void *destination, // OUT: memory destination
36 TPM2B *aInOut, // IN/OUT: destination 2B
/external/vogar/src/vogar/tasks/
H A DRetrieveFilesTask.java43 private void retrieveFiles(File destination, File source, FileFilter filenameFilter) argument
47 run.log.info("Moving " + file + " to " + destination);
48 run.mkdir.mkdirs(destination);
49 run.target.pull(file, destination);
/external/webrtc/webrtc/modules/audio_coding/neteq/tools/
H A Dresample_input_audio_file.cc21 int16_t* destination) {
31 destination, samples, output_length),
37 bool ResampleInputAudioFile::Read(size_t samples, int16_t* destination) { argument
39 return Read(samples, output_rate_hz_, destination);
19 Read(size_t samples, int output_rate_hz, int16_t* destination) argument
/external/gemmlowp/meta/generators/
H A Dneon_emitter.py242 def EmitAdd(self, destination, source, param):
243 self.EmitOp3('add', destination, source, param)
245 def EmitSubs(self, destination, source, param):
246 self.EmitOp3('subs', destination, source, param)
248 def EmitSub(self, destination, source, param):
249 self.EmitOp3('sub', destination, source, param)
251 def EmitMul(self, destination, source, param):
252 self.EmitOp3('mul', destination, source, param)
272 def EmitVAdd(self, add_type, destination, source_1, source_2):
273 self.EmitOp3('vadd.%s' % add_type, destination, source_
[all...]
/external/v8/src/compiler/
H A Dgap-resolver.cc22 inline bool Blocks(MoveOperands* move, InstructionOperand destination) { argument
23 return !move->IsEliminated() && move->source().InterferesWith(destination);
36 const LocationOperand& dst_loc = LocationOperand::cast(move->destination());
98 if (!kSimpleFPAliasing && move->destination().IsFPRegister()) {
100 REP_BIT(LocationOperand::cast(move->destination()).representation());
112 if (!move->IsEliminated() && move->destination().IsFloatRegister())
120 if (!move->IsEliminated() && move->destination().IsDoubleRegister())
143 // Clear this move's destination to indicate a pending move. The actual
144 // destination is saved on the side.
147 InstructionOperand destination local
[all...]

Completed in 760 milliseconds

1234567891011>>