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

1234567891011

/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/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/v8/src/x64/
H A Dlithium-gap-resolver-x64.cc49 // the same as the destination, the destination is ignored and
71 // Clear this move's destination to indicate a pending move. The actual
72 // destination is saved in a stack-allocated local. Recursion may allow
75 LOperand* destination = moves_[index].destination(); local
80 // as this one's destination blocks this one so recursively perform all
84 if (other_move.Blocks(destination) && !other_move.IsPending()) {
90 // not be swapped). Since this move's destination is B and there is
99 // pending, so restore its destination
130 LOperand* destination = moves_[i].destination(); local
144 LOperand* destination = moves_[index].destination(); local
240 LOperand* destination = moves_[index].destination(); local
[all...]
/external/v8/src/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
196 LOperand* destination = moves_[i].destination(); local
255 LOperand* destination = moves_[index].destination(); local
358 LOperand* destination = moves_[index].destination(); local
[all...]
/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/jetty/src/java/org/eclipse/jetty/client/
H A DSocketConnector.java50 public void startConnection(final HttpDestination destination) throws IOException argument
52 Socket socket= destination.isSecure()
53 ? destination.getSslContextFactory().newSslSocket()
59 Address address = destination.isProxied() ? destination.getProxy() : destination.getAddress();
65 connection.setDestination(destination);
66 destination.onNewConnection(connection);
92 destination.onException(e);
99 destination
[all...]
/external/v8/src/compiler/
H A Dgap-resolver.cc28 // No operand should be the destination for more than one move.
33 SLOW_DCHECK(seen.find(i->destination()) == seen.end());
34 seen.insert(i->destination());
66 // Clear this move's destination to indicate a pending move. The actual
67 // destination is saved on the side.
69 InstructionOperand* destination = move->destination(); local
74 // destination blocks this one so recursively perform all such moves.
76 if (other->Blocks(destination) && !other->IsPending()) {
82 // Since this move's destination i
[all...]
H A Dgap-resolver.h23 InstructionOperand* destination) = 0;
26 InstructionOperand* destination) = 0;
/external/v8/src/mips64/
H A Dlithium-gap-resolver-mips64.cc55 // the same as the destination, the destination is ignored and
76 // its destination. All other moves from the spilled source have been
84 // Clear this move's destination to indicate a pending move. The actual
85 // destination is saved in a stack allocated local. Multiple moves can
88 LOperand* destination = moves_[index].destination(); local
93 // as this one's destination blocks this one so recursively perform all
97 if (other_move.Blocks(destination) && !other_move.IsPending()) {
106 // pending, so restore its destination
128 LOperand* destination = moves_[i].destination(); local
189 LOperand* destination = moves_[index].destination(); local
[all...]
/external/v8/src/ia32/
H A Dlithium-gap-resolver-ia32.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
196 LOperand* destination = moves_[i].destination(); local
255 LOperand* destination = moves_[index].destination(); local
354 LOperand* destination = moves_[index].destination(); local
[all...]
/external/v8/src/arm64/
H A Dlithium-gap-resolver-arm64.cc73 // the same as the destination, the destination is ignored and
94 // Clear this move's destination to indicate a pending move. The actual
95 // destination is saved in a stack allocated local. Multiple moves can
98 LOperand* destination = current_move.destination(); local
103 // as this one's destination blocks this one so recursively perform all
107 if (other_move.Blocks(destination) && !other_move.IsPending()) {
116 // pending, so restore its destination.
117 current_move.set_destination(destination);
138 LOperand* destination = moves_[i].destination(); local
205 LOperand* destination = moves_[index].destination(); local
[all...]
/external/v8/src/mips/
H A Dlithium-gap-resolver-mips.cc55 // the same as the destination, the destination is ignored and
76 // its destination. All other moves from the spilled source have been
84 // Clear this move's destination to indicate a pending move. The actual
85 // destination is saved in a stack allocated local. Multiple moves can
88 LOperand* destination = moves_[index].destination(); local
93 // as this one's destination blocks this one so recursively perform all
97 if (other_move.Blocks(destination) && !other_move.IsPending()) {
106 // pending, so restore its destination
128 LOperand* destination = moves_[i].destination(); local
189 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/arm/
H A Dlithium-gap-resolver-arm.cc71 // the same as the destination, the destination is ignored and
92 // its destination. All other moves from the spilled source have been
100 // Clear this move's destination to indicate a pending move. The actual
101 // destination is saved in a stack allocated local. Multiple moves can
104 LOperand* destination = moves_[index].destination(); local
109 // as this one's destination blocks this one so recursively perform all
113 if (other_move.Blocks(destination) && !other_move.IsPending()) {
122 // pending, so restore its destination
144 LOperand* destination = moves_[i].destination(); local
203 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/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/valgrind/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/dnsmasq/contrib/port-forward/
H A Ddnsmasq-portforward55 ${IPTABLES} -t nat -D PREROUTING -p $protocol --destination-port $src -j DNAT --to-destination ${3}:$dst
57 ${IPTABLES} -t nat -A PREROUTING -p $protocol --destination-port $src -j DNAT --to-destination ${3}:$dst
/external/bison/src/
H A Dgraphviz.h43 * \param destination id of the target node
49 void output_edge (int source, int destination, char const *label,
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/24/1/.cp/ant_tasks/
H A Dhelpbase-ant.jar ... tools.ant.Task { private String manifest private String destination private org.eclipse.help.search.HelpIndexBuilder
/external/jetty/src/java/org/eclipse/jetty/client/security/
H A DRealmResolver.java27 public Realm getRealm( String realmName, HttpDestination destination, String path ) throws IOException; argument
H A DSimpleRealmResolver.java40 public Realm getRealm( String realmName, HttpDestination destination, String path ) throws IOException argument
/external/kernel-headers/original/uapi/linux/
H A Dbpqether.h16 unsigned char destination[ETH_ALEN]; member in struct:bpq_ethaddr

Completed in 651 milliseconds

1234567891011