/external/v8/src/x64/ |
D | lithium-gap-resolver-x64.cc | 75 LOperand* destination = moves_[index].destination(); in PerformMove() local 84 if (other_move.Blocks(destination) && !other_move.IsPending()) { in PerformMove() 100 moves_[index].set_destination(destination); in PerformMove() 104 if (moves_[index].source()->Equals(destination)) { in PerformMove() 114 if (other_move.Blocks(destination)) { in PerformMove() 130 LOperand* destination = moves_[i].destination(); in Verify() local 132 SLOW_DCHECK(!destination->Equals(moves_[j].destination())); in Verify() 144 LOperand* destination = moves_[index].destination(); in EmitMove() local 150 if (destination->IsRegister()) { in EmitMove() 151 Register dst = cgen_->ToRegister(destination); in EmitMove() [all …]
|
/external/v8/src/ia32/ |
D | lithium-gap-resolver-ia32.cc | 79 LOperand* destination = moves_[index].destination(); in PerformMove() local 88 if (other_move.Blocks(destination) && !other_move.IsPending()) { in PerformMove() 104 moves_[index].set_destination(destination); in PerformMove() 108 if (moves_[index].source()->Equals(destination)) { in PerformMove() 118 if (other_move.Blocks(destination)) { in PerformMove() 134 LOperand* destination = move.destination(); in AddMove() local 135 if (destination->IsRegister()) ++destination_uses_[destination->index()]; in AddMove() 148 LOperand* destination = moves_[index].destination(); in RemoveMove() local 149 if (destination->IsRegister()) { in RemoveMove() 150 --destination_uses_[destination->index()]; in RemoveMove() [all …]
|
/external/v8/src/x87/ |
D | lithium-gap-resolver-x87.cc | 79 LOperand* destination = moves_[index].destination(); in PerformMove() local 88 if (other_move.Blocks(destination) && !other_move.IsPending()) { in PerformMove() 104 moves_[index].set_destination(destination); in PerformMove() 108 if (moves_[index].source()->Equals(destination)) { in PerformMove() 118 if (other_move.Blocks(destination)) { in PerformMove() 134 LOperand* destination = move.destination(); in AddMove() local 135 if (destination->IsRegister()) ++destination_uses_[destination->index()]; in AddMove() 148 LOperand* destination = moves_[index].destination(); in RemoveMove() local 149 if (destination->IsRegister()) { in RemoveMove() 150 --destination_uses_[destination->index()]; in RemoveMove() [all …]
|
/external/v8/src/mips64/ |
D | lithium-gap-resolver-mips64.cc | 88 LOperand* destination = moves_[index].destination(); in PerformMove() local 97 if (other_move.Blocks(destination) && !other_move.IsPending()) { in PerformMove() 107 moves_[index].set_destination(destination); in PerformMove() 113 if (other_move.Blocks(destination)) { in PerformMove() 128 LOperand* destination = moves_[i].destination(); in Verify() local 130 SLOW_DCHECK(!destination->Equals(moves_[j].destination())); in Verify() 142 DCHECK(moves_[index].destination()->Equals(moves_[root_index_].source())); in BreakCycle() 146 saved_destination_ = moves_[index].destination(); in BreakCycle() 189 LOperand* destination = moves_[index].destination(); in EmitMove() local 196 if (destination->IsRegister()) { in EmitMove() [all …]
|
/external/v8/src/arm64/ |
D | lithium-gap-resolver-arm64.cc | 98 LOperand* destination = current_move.destination(); in PerformMove() local 107 if (other_move.Blocks(destination) && !other_move.IsPending()) { in PerformMove() 117 current_move.set_destination(destination); in PerformMove() 123 if (other_move.Blocks(destination)) { in PerformMove() 138 LOperand* destination = moves_[i].destination(); in Verify() local 140 SLOW_DCHECK(!destination->Equals(moves_[j].destination())); in Verify() 148 DCHECK(moves_[index].destination()->Equals(moves_[root_index_].source())); in BreakCycle() 156 saved_destination_ = moves_[index].destination(); in BreakCycle() 205 LOperand* destination = moves_[index].destination(); in EmitMove() local 212 if (destination->IsRegister()) { in EmitMove() [all …]
|
/external/v8/src/mips/ |
D | lithium-gap-resolver-mips.cc | 88 LOperand* destination = moves_[index].destination(); in PerformMove() local 97 if (other_move.Blocks(destination) && !other_move.IsPending()) { in PerformMove() 107 moves_[index].set_destination(destination); in PerformMove() 113 if (other_move.Blocks(destination)) { in PerformMove() 128 LOperand* destination = moves_[i].destination(); in Verify() local 130 SLOW_DCHECK(!destination->Equals(moves_[j].destination())); in Verify() 142 DCHECK(moves_[index].destination()->Equals(moves_[root_index_].source())); in BreakCycle() 146 saved_destination_ = moves_[index].destination(); in BreakCycle() 189 LOperand* destination = moves_[index].destination(); in EmitMove() local 196 if (destination->IsRegister()) { in EmitMove() [all …]
|
/external/v8/src/arm/ |
D | lithium-gap-resolver-arm.cc | 104 LOperand* destination = moves_[index].destination(); in PerformMove() local 113 if (other_move.Blocks(destination) && !other_move.IsPending()) { in PerformMove() 123 moves_[index].set_destination(destination); in PerformMove() 129 if (other_move.Blocks(destination)) { in PerformMove() 144 LOperand* destination = moves_[i].destination(); in Verify() local 146 SLOW_DCHECK(!destination->Equals(moves_[j].destination())); in Verify() 157 DCHECK(moves_[index].destination()->Equals(moves_[root_index_].source())); in BreakCycle() 161 saved_destination_ = moves_[index].destination(); in BreakCycle() 203 LOperand* destination = moves_[index].destination(); in EmitMove() local 210 if (destination->IsRegister()) { in EmitMove() [all …]
|
/external/google-breakpad/src/common/windows/ |
D | string_utils-inl.h | 75 static void safe_wcscpy(wchar_t *destination, size_t destination_size, 82 static void safe_wcsncpy(wchar_t *destination, size_t destination_size, 105 inline void WindowsStringUtils::safe_wcscpy(wchar_t *destination, in safe_wcscpy() argument 109 wcscpy_s(destination, destination_size, source); in safe_wcscpy() 114 wcsncpy(destination, source, destination_size); in safe_wcscpy() 115 if (destination && destination_size) in safe_wcscpy() 116 destination[destination_size - 1] = 0; in safe_wcscpy() 121 inline void WindowsStringUtils::safe_wcsncpy(wchar_t *destination, in safe_wcsncpy() argument 126 wcsncpy_s(destination, destination_size, source, count); in safe_wcsncpy() 134 wcsncpy(destination, source, count); in safe_wcsncpy() [all …]
|
/external/v8/src/compiler/ |
D | gap-resolver.cc | 33 SLOW_DCHECK(seen.find(i->destination()) == seen.end()); in VerifyMovesAreInjective() 34 seen.insert(i->destination()); in VerifyMovesAreInjective() 69 InstructionOperand* destination = move->destination(); in PerformMove() local 76 if (other->Blocks(destination) && !other->IsPending()) { in PerformMove() 92 move->set_destination(destination); in PerformMove() 97 if (source->Equals(destination)) { in PerformMove() 107 std::bind2nd(std::mem_fun_ref(&MoveOperands::Blocks), destination)); in PerformMove() 110 assembler_->AssembleMove(source, destination); in PerformMove() 118 std::swap(source, destination); in PerformMove() 120 assembler_->AssembleSwap(source, destination); in PerformMove() [all …]
|
/external/skia/src/animator/ |
D | SkMatrixParts.cpp | 161 SK_MEMBER(destination, Rect), 170 source(NULL), destination(NULL) { in SkRectToRect() 177 if (source == NULL || destination == NULL) in add() 180 temp.setRectToRect(source->fRect, destination->fRect, in add() 198 if (destination) { in dump() 201 destination->dump(maker); in dump() 214 SkASSERT(destination == NULL); in preferredChild() 223 SK_MEMBER(destination, Polygon), 231 SkPolyToPoly::SkPolyToPoly() : source(NULL), destination(NULL) { in SkPolyToPoly() 239 SkASSERT(destination); in add() [all …]
|
/external/jetty/src/java/org/eclipse/jetty/client/ |
D | SocketConnector.java | 50 public void startConnection(final HttpDestination destination) throws IOException in startConnection() argument 52 Socket socket= destination.isSecure() in startConnection() 53 ? destination.getSslContextFactory().newSslSocket() in startConnection() 59 … Address address = destination.isProxied() ? destination.getProxy() : destination.getAddress(); in startConnection() 65 connection.setDestination(destination); in startConnection() 66 destination.onNewConnection(connection); in startConnection() 92 destination.onException(e); in startConnection() 99 destination.returnConnection(connection,true); in startConnection()
|
D | SelectConnector.java | 67 public void startConnection( HttpDestination destination ) in startConnection() argument 74 … Address address = destination.isProxied() ? destination.getProxy() : destination.getAddress(); in startConnection() 81 _selectorManager.register( channel, destination ); in startConnection() 87 _selectorManager.register(channel,destination); in startConnection() 88 ConnectTimeout connectTimeout = new ConnectTimeout(channel,destination); in startConnection() 97 destination.onConnectionFailed(ex); in startConnection() 103 destination.onConnectionFailed(ex); in startConnection() 215 private final HttpDestination destination; field in SelectConnector.ConnectTimeout 217 public ConnectTimeout(SocketChannel channel, HttpDestination destination) in ConnectTimeout() argument 220 this.destination = destination; in ConnectTimeout() [all …]
|
/external/v8/src/compiler/ia32/ |
D | code-generator-ia32.cc | 794 InstructionOperand* destination) { in AssembleMove() argument 799 DCHECK(destination->IsRegister() || destination->IsStackSlot()); in AssembleMove() 801 Operand dst = g.ToOperand(destination); in AssembleMove() 804 DCHECK(destination->IsRegister() || destination->IsStackSlot()); in AssembleMove() 806 if (destination->IsRegister()) { in AssembleMove() 807 Register dst = g.ToRegister(destination); in AssembleMove() 810 Operand dst = g.ToOperand(destination); in AssembleMove() 818 if (destination->IsRegister()) { in AssembleMove() 819 Register dst = g.ToRegister(destination); in AssembleMove() 822 DCHECK(destination->IsStackSlot()); in AssembleMove() [all …]
|
/external/vogar/src/vogar/ |
D | HostFileCache.java | 35 private void cp(File source, File destination) { in cp() argument 36 List<String> rawResult = new Command.Builder(log).args("cp", source, destination).execute(); in cp() 39 throw new RuntimeException("Couldn't copy " + source + " to " + destination in cp() 44 private void mv(File source, File destination) { in mv() argument 45 List<String> rawResult = new Command.Builder(log).args("mv", source, destination).execute(); in mv() 48 throw new RuntimeException("Couldn't move " + source + " to " + destination in mv() 53 public void copyFromCache(String key, File destination) { in copyFromCache() argument 55 cp(cachedFile, destination); in copyFromCache()
|
/external/libavc/common/arm/ |
D | ih264_default_weighted_pred_a9q.s | 51 @* stores it in the destination block. 60 @* UWORD8 pointer to the destination where the output block is stored. 69 @* Stride of the destination buffer 136 vst1.32 d0[0], [r2], r5 @load row 1 in destination 137 vst1.32 d0[1], [r2], r5 @load row 2 in destination 139 vst1.32 d1[0], [r2], r5 @load row 3 in destination 140 vst1.32 d1[1], [r2], r5 @load row 4 in destination 160 vst1.8 d0, [r2], r5 @load row 1 in destination 162 vst1.8 d1, [r2], r5 @load row 2 in destination 163 vst1.8 d2, [r2], r5 @load row 3 in destination [all …]
|
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
D | MessageLog.java | 51 private String destination; field in MessageLog 85 String destination, in MessageLog() argument 96 this.destination = destination; in MessageLog() 118 String destination, in MessageLog() argument 129 this.destination = destination; in MessageLog() 153 + destination in toString()
|
/external/protobuf/src/google/protobuf/ |
D | repeated_field_unittest.cc | 250 RepeatedField<int> source, destination; in TEST() local 253 destination.Add(1); in TEST() 254 destination.Add(2); in TEST() 255 destination.Add(3); in TEST() 257 destination.MergeFrom(source); in TEST() 259 ASSERT_EQ(5, destination.size()); in TEST() 260 EXPECT_EQ(1, destination.Get(0)); in TEST() 261 EXPECT_EQ(2, destination.Get(1)); in TEST() 262 EXPECT_EQ(3, destination.Get(2)); in TEST() 263 EXPECT_EQ(4, destination.Get(3)); in TEST() [all …]
|
D | extension_set_unittest.cc | 343 unittest::TestAllTypes destination; in TEST() local 351 EXPECT_TRUE(destination.ParseFromString(data)); in TEST() 352 TestUtil::ExpectAllFieldsSet(destination); in TEST() 364 unittest::TestAllTypes destination; in TEST() local 375 EXPECT_TRUE(destination.ParseFromString(data)); in TEST() 376 TestUtil::ExpectAllFieldsSet(destination); in TEST() 387 unittest::TestPackedTypes destination; in TEST() local 395 EXPECT_TRUE(destination.ParseFromString(data)); in TEST() 396 TestUtil::ExpectPackedFieldsSet(destination); in TEST() 408 unittest::TestPackedTypes destination; in TEST() local [all …]
|
/external/v8/test/cctest/compiler/ |
D | test-gap-resolver.cc | 22 if (!it->IsRedundant()) write(it->destination(), copy.read(it->source())); in ExecuteInParallel() 66 InstructionOperand destination(it->second.first, it->second.second); in operator <<() local 67 os << MoveOperands(&source, &destination); in operator <<() 80 InstructionOperand* destination) OVERRIDE { in AssembleMove() argument 82 moves.push_back(MoveOperands(source, destination)); in AssembleMove() 87 InstructionOperand* destination) OVERRIDE { in AssembleSwap() argument 89 moves.push_back(MoveOperands(source, destination)); in AssembleSwap() 90 moves.push_back(MoveOperands(destination, source)); in AssembleSwap() 116 if (!mo.IsRedundant() && seen.find(mo.destination()) == seen.end()) { in Create() 117 parallel_move->AddMove(mo.source(), mo.destination(), main_zone()); in Create() [all …]
|
/external/valgrind/memcheck/tests/ |
D | overlap.stderr.exp | 1 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/v8/src/compiler/arm/ |
D | code-generator-arm.cc | 700 InstructionOperand* destination) { in AssembleMove() argument 705 DCHECK(destination->IsRegister() || destination->IsStackSlot()); in AssembleMove() 707 if (destination->IsRegister()) { in AssembleMove() 708 __ mov(g.ToRegister(destination), src); in AssembleMove() 710 __ str(src, g.ToMemOperand(destination)); in AssembleMove() 713 DCHECK(destination->IsRegister() || destination->IsStackSlot()); in AssembleMove() 715 if (destination->IsRegister()) { in AssembleMove() 716 __ ldr(g.ToRegister(destination), src); in AssembleMove() 720 __ str(temp, g.ToMemOperand(destination)); in AssembleMove() 723 if (destination->IsRegister() || destination->IsStackSlot()) { in AssembleMove() [all …]
|
/external/iptables/extensions/ |
D | libxt_DNAT.man | 8 chains. It specifies that the destination address of the packet 13 \fB\-\-to\-destination\fP [\fIipaddr\fP[\fB\-\fP\fIipaddr\fP]][\fB:\fP\fIport\fP[\fB\-\fP\fIport\fP… 14 which can specify a single new destination IP address, an inclusive 18 If no port range is specified, then the destination port will never be 19 modified. If no IP address is specified then only the destination port 21 In Kernels up to 2.6.10 you can add several \-\-to\-destination options. For 22 those kernels, if you specify more than one destination address, either via an 23 address range or multiple \-\-to\-destination options, a simple round-robin (one 34 Gives a client the same source-/destination-address for each connection.
|
/external/v8/src/compiler/arm64/ |
D | code-generator-arm64.cc | 721 InstructionOperand* destination) { in AssembleMove() argument 726 DCHECK(destination->IsRegister() || destination->IsStackSlot()); in AssembleMove() 728 if (destination->IsRegister()) { in AssembleMove() 729 __ Mov(g.ToRegister(destination), src); in AssembleMove() 731 __ Str(src, g.ToMemOperand(destination, masm())); in AssembleMove() 735 DCHECK(destination->IsRegister() || destination->IsStackSlot()); in AssembleMove() 736 if (destination->IsRegister()) { in AssembleMove() 737 __ Ldr(g.ToRegister(destination), src); in AssembleMove() 742 __ Str(temp, g.ToMemOperand(destination, masm())); in AssembleMove() 746 if (destination->IsRegister() || destination->IsStackSlot()) { in AssembleMove() [all …]
|
/external/v8/src/compiler/x64/ |
D | code-generator-x64.cc | 874 InstructionOperand* destination) { in AssembleMove() argument 879 DCHECK(destination->IsRegister() || destination->IsStackSlot()); in AssembleMove() 881 if (destination->IsRegister()) { in AssembleMove() 882 __ movq(g.ToRegister(destination), src); in AssembleMove() 884 __ movq(g.ToOperand(destination), src); in AssembleMove() 887 DCHECK(destination->IsRegister() || destination->IsStackSlot()); in AssembleMove() 889 if (destination->IsRegister()) { in AssembleMove() 890 Register dst = g.ToRegister(destination); in AssembleMove() 896 Operand dst = g.ToOperand(destination); in AssembleMove() 902 if (destination->IsRegister() || destination->IsStackSlot()) { in AssembleMove() [all …]
|
/external/vogar/src/vogar/tasks/ |
D | RetrieveFilesTask.java | 43 private void retrieveFiles(File destination, File source, FileFilter filenameFilter) in retrieveFiles() argument 47 run.log.info("Moving " + file + " to " + destination); in retrieveFiles() 48 run.mkdir.mkdirs(destination); in retrieveFiles() 49 run.target.pull(file, destination); in retrieveFiles()
|