Searched defs:destination (Results 201 - 225 of 263) sorted by relevance

1234567891011

/external/chromium_org/third_party/icu/source/i18n/
H A Dusearch.cpp200 * Adds a uint32_t value to a destination array.
204 * before calling this method. destination not to be NULL and has at least
206 * @param destination target array
207 * @param offset destination offset to add value
213 * @return new destination array, destination if there was no new allocation
216 inline int32_t * addTouint32_tArray(int32_t *destination, argument
231 uprv_memcpy(temp, destination, sizeof(int32_t) * offset);
233 destination = temp;
235 destination[offse
256 addTouint64_tArray(int64_t *destination, uint32_t offset, uint32_t *destinationlength, uint64_t value, uint32_t increments, UErrorCode *status) argument
1369 addToUCharArray( UChar *destination, int32_t *destinationlength, const UChar *source1, const UChar *source2, int32_t source2length, const UChar *source3, UErrorCode *status) argument
[all...]
/external/chromium_org/v8/src/
H A Dcode-stubs.h1885 DoubleToIStub(Isolate* isolate, Register source, Register destination, argument
1889 DestinationRegisterBits::encode(destination.code()) |
1902 Register destination() const { function in class:DoubleToIStub
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h1124 // Source is a pointer, destination is the value to store.
1132 SExpr *destination() { return Dest.get(); } // Address to store to function in class:clang::threadSafety::Store
1133 const SExpr *destination() const { return Dest.get(); } function in class:clang::threadSafety::Store
1146 typename C::CType Ct = Cmp.compare(destination(), E->destination());
/external/icu/icu4c/source/i18n/
H A Dusearch.cpp192 * Adds a uint32_t value to a destination array.
196 * before calling this method. destination not to be NULL and has at least
198 * @param destination target array
199 * @param offset destination offset to add value
205 * @return new destination array, destination if there was no new allocation
208 inline int32_t * addTouint32_tArray(int32_t *destination, argument
223 uprv_memcpy(temp, destination, sizeof(int32_t) * offset);
225 destination = temp;
227 destination[offse
248 addTouint64_tArray(int64_t *destination, uint32_t offset, uint32_t *destinationlength, uint64_t value, uint32_t increments, UErrorCode *status) argument
1356 addToUCharArray( UChar *destination, int32_t *destinationlength, const UChar *source1, const UChar *source2, int32_t source2length, const UChar *source3, UErrorCode *status) argument
[all...]
/external/lldb/source/Core/
H A DValueObject.cpp751 std::string& destination)
753 destination.clear();
775 summary_ptr->FormatObject(this, destination);
822 destination.assign (1, '(');
823 destination.append (sstr.GetData(), sstr.GetSize());
824 destination.append (1, ')');
831 return !destination.empty();
1305 std::string& destination)
1329 destination.swap(reg_sstr.GetString());
1376 destination
750 GetSummaryAsCString(TypeSummaryImpl* summary_ptr, std::string& destination) argument
1304 GetValueAsCString(lldb::Format format, std::string& destination) argument
[all...]
/external/netperf/
H A Dnettest_bsd.c1161 print_top_test_header(char test_name[], struct addrinfo *source, struct addrinfo *destination)
1184 inet_ntop(destination->ai_family,get_address_address(destination),address_buf,sizeof(address_buf));
1187 destination->ai_canonname,
1189 get_port_number(destination),
1190 inet_ftos(destination->ai_family));
6847 /* the default destination address on this socket. With UDP, this */
1154 print_top_test_header(char test_name[], struct addrinfo *source, struct addrinfo *destination) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/lib/
H A Dpdebuild-ant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse/pde/internal/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.metadata.generator_1.0.200.v20100503a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.launcher.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.launcher_1.1.0.v20100507.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.director.app_1.0.201.R36x_v20100823.jar ... private org.eclipse.core.runtime.Path destination private java.net.URI[] artifactRepositoryLocations private java. ...
H A Dorg.eclipse.equinox.p2.touchpoint.natives_1.0.200.v20100503a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DWebFrameTest.cpp3875 virtual void startPageScaleAnimation(const WebPoint& destination, bool useAnchor, float newPageScale, double durationSec) OVERRIDE { }
5094 KURL destination = document->url(); local
5095 destination.setFragmentIdentifier("test");
5099 FrameLoadRequest frameRequest(document, ResourceRequest(destination));
5143 KURL destination = toKURL(m_baseURL + "hello_world.html"); local
5148 FrameLoadRequest frameRequest(document, ResourceRequest(destination));
/external/chromium_org/v8/src/ia32/
H A Dmacro-assembler-ia32.cc70 void MacroAssembler::LoadRoot(Register destination, Heap::RootListIndex index) { argument
73 mov(destination, value);
78 mov(destination, Immediate(index));
79 mov(destination, Operand::StaticArray(destination,
380 // Array access: calculate the destination address in the same manner as
1815 // Copy memory, byte-by-byte, from source to destination. Not optimized for
1817 // Source and destination are incremented by length.
1824 Register destination,
1829 DCHECK(destination
1823 CopyBytes(Register source, Register destination, Register length, Register scratch) argument
[all...]
/external/chromium_org/v8/src/mips64/
H A Dmacro-assembler-mips64.cc74 void MacroAssembler::LoadRoot(Register destination, argument
76 ld(destination, MemOperand(s6, index << kPointerSizeLog2));
80 void MacroAssembler::LoadRoot(Register destination, argument
85 ld(destination, MemOperand(s6, index << kPointerSizeLog2));
4683 // destination register in case we store into it (the write barrier
H A Dlithium-codegen-mips64.cc4173 Register destination = object; local
4175 destination = scratch1;
4176 __ ld(destination, FieldMemOperand(object, JSObject::kPropertiesOffset));
4183 __ Load(scratch2, FieldMemOperand(destination, offset), representation);
4192 MemOperand operand = FieldMemOperand(destination, offset);
4196 __ RecordWriteField(destination,
/external/chromium_org/v8/src/x64/
H A Dmacro-assembler-x64.cc76 void MacroAssembler::Load(Register destination, ExternalReference source) { argument
80 movp(destination, Operand(kRootRegister, static_cast<int32_t>(delta)));
85 if (destination.is(rax)) {
89 movp(destination, Operand(kScratchRegister, 0));
94 void MacroAssembler::Store(ExternalReference destination, Register source) { argument
96 int64_t delta = RootRegisterDelta(destination);
104 store_rax(destination);
106 Move(kScratchRegister, destination);
112 void MacroAssembler::LoadAddress(Register destination, argument
117 leap(destination, Operan
161 LoadRoot(Register destination, Heap::RootListIndex index) argument
168 LoadRootIndexed(Register destination, Register variable_offset, int fixed_offset) argument
4714 CopyBytes(Register destination, Register source, Register length, int min_length, Register scratch) argument
[all...]
/external/chromium_org/v8/src/x87/
H A Dmacro-assembler-x87.cc70 void MacroAssembler::LoadRoot(Register destination, Heap::RootListIndex index) { argument
73 mov(destination, value);
78 mov(destination, Immediate(index));
79 mov(destination, Operand::StaticArray(destination,
311 // Array access: calculate the destination address in the same manner as
1778 // Copy memory, byte-by-byte, from source to destination. Not optimized for
1780 // Source and destination are incremented by length.
1787 Register destination,
1792 DCHECK(destination
1786 CopyBytes(Register source, Register destination, Register length, Register scratch) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
H A Dpdebuild.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse/pde/build/ ...
/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/chromium_org/pdf/pdfium/
H A Dpdfium_engine.cc322 // Set the destination page size and content area in points based on source
327 // |page_size| has the actual destination page size in points.
328 // |content_rect| has the actual destination page printable area values in
349 // |content_rect| specifies the printable area of the destination page, with
403 // |content_rect| specifies the printable area of the destination page, with
425 // |content_rect| specifies the printable area of the destination page, with
429 // |page_width| specifies the screen destination page width.
430 // |page_height| specifies the screen destination page height.
1970 int PDFiumEngine::GetNamedDestinationPage(const std::string& destination) { argument
1971 // Look for the destination
[all...]
/external/chromium_org/third_party/libxml/src/
H A Dtrio.c3406 TRIO_ARGS6((destination, destinationSize, OutStream, format, arglist, argarray),
3407 trio_pointer_t destination,
3423 data.location = destination;
3405 TrioFormat(destination, destinationSize, OutStream, format, arglist, argarray), trio_pointer_t destination, size_t destinationSize, void (*OutStream) TRIO_PROTO((trio_class_t *, int)), TRIO_CONST char *format, va_list *arglist, trio_pointer_t *argarray argument
/external/chromium_org/v8/src/arm64/
H A Dlithium-codegen-arm64.cc5385 Register destination; local
5387 destination = object;
5391 destination = temp0;
5399 __ Ldr(temp0, FieldMemOperand(destination, offset));
5401 // If destination aliased temp0, restore it to the address calculated
5403 if (destination.Is(temp0)) {
5405 __ Ldr(destination, FieldMemOperand(object, JSObject::kPropertiesOffset));
5410 __ Store(value, UntagSmiFieldMemOperand(destination, offset),
5413 __ Store(value, FieldMemOperand(destination, offset), representation);
5416 __ RecordWriteField(destination,
[all...]
H A Dmacro-assembler-arm64.cc131 // If rd is the stack pointer we cannot use it as the destination
230 // Move the temporary if the original destination register was the stack
459 // The new immediate has been moved into the destination's low bits:
463 // The new immediate has been moved into the destination's high bits:
1396 void MacroAssembler::LoadRoot(CPURegister destination, argument
1400 Ldr(destination, MemOperand(root, index << kPointerSizeLog2));
3264 // destination register in case we store into it (the write barrier
/external/chromium_org/v8/src/mips/
H A Dmacro-assembler-mips.cc71 void MacroAssembler::LoadRoot(Register destination, argument
73 lw(destination, MemOperand(s6, index << kPointerSizeLog2));
77 void MacroAssembler::LoadRoot(Register destination, argument
82 lw(destination, MemOperand(s6, index << kPointerSizeLog2));
4793 // destination register in case we store into it (the write barrier

Completed in 3599 milliseconds

1234567891011