Searched defs:offset (Results 226 - 250 of 644) sorted by relevance

1234567891011>>

/frameworks/compile/mclinker/include/mcld/Fragment/
H A DStub.h41 DWord offset() const { return m_Offset; } function in class:mcld::Stub::Fixup
/frameworks/compile/mclinker/lib/Fragment/
H A DRelocation.cpp75 m_TargetAddress.assign(*pTargetRef->frag(), pTargetRef->offset());
145 uint32_t offset = m_pSymInfo->outSymbol()->fragRef()->getOutputOffset(); local
146 m_Addend += offset;
/frameworks/compile/mclinker/lib/LD/
H A DELFObjectReader.cpp138 pInput.fileOffset() + (*section)->offset(), (*section)->size());
294 pInput.fileOffset() + symtab_shdr->offset(), symtab_shdr->size());
296 pInput.fileOffset() + strtab_shdr->offset(), strtab_shdr->size());
312 uint32_t offset = pInput.fileOffset() + (*rs)->offset(); local
314 llvm::StringRef region = mem->request(offset, size);
H A DEhFrameHdr.cpp42 pOutput.request(m_EhFrameHdr.offset(), m_EhFrameHdr.size());
45 pOutput.request(m_EhFrame.offset(), m_EhFrame.size());
88 SizeTraits<32>::Offset offset; local
91 offset = fde.getOffset();
93 fde_addr = m_EhFrame.addr() + offset;
168 const uint8_t* offset = (const uint8_t*)pEhFrameRegion.begin() + local
170 std::memcpy(&pc, offset, pc_size);
/frameworks/compile/mclinker/lib/Object/
H A DObjectBuilder.cpp133 uint64_t offset = pTo.getSection().size(); local
142 align->setOffset(offset);
145 offset += align->size();
154 frag->setOffset(offset);
155 offset += frag->size();
160 pTo.getSection().setSize(offset);
182 // get initial offset.
183 uint64_t offset = 0; local
185 offset = pSD.back().getOffset() + pSD.back().size();
194 align->setOffset(offset);
[all...]
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64GOT.cpp55 uint32_t offset = 0; local
57 // setup GOT0 offset
60 frag->setOffset(offset);
61 offset += frag->size();
64 // push GOTPLT into the SectionData and setup the offset
72 entry->setOffset(offset);
73 offset += entry->size();
78 // push GOT into the SectionData and setup the offset
86 entry->setOffset(offset);
87 offset
[all...]
H A DAArch64PLT.cpp50 uint32_t offset = 0; local
53 frag->setOffset(offset);
54 offset += frag->size();
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMPLT.cpp47 uint32_t offset = 0; local
50 frag->setOffset(offset);
51 offset += frag->size();
69 uint32_t offset = 0; local
72 offset = got_base - (plt_base + 16);
74 offset = (plt_base + 16) - got_base;
90 data[4] = offset;
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsPLT.cpp66 uint32_t offset = 0; local
69 frag->setOffset(offset);
70 offset += frag->size();
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86PLT.cpp102 uint32_t offset = 0; local
105 frag->setOffset(offset);
106 offset += frag->size();
154 uint32_t* offset = reinterpret_cast<uint32_t*>(data + 2); local
155 *offset = m_GOTPLT.addr() + 4;
156 offset = reinterpret_cast<uint32_t*>(data + 8);
157 *offset = m_GOTPLT.addr() + 8;
196 uint32_t* offset; local
198 offset = reinterpret_cast<uint32_t*>(data + 2);
199 *offset
237 uint32_t* offset = reinterpret_cast<uint32_t*>(data + 2); local
283 uint32_t* offset; local
[all...]
/frameworks/ex/framesequence/jni/
H A DFrameSequenceJNI.cpp49 jbyteArray byteArray, jint offset, jint length) {
56 MemoryStream stream(bytes + offset, length, NULL);
63 jobject buf, jint offset, jint limit) {
69 env->GetDirectBufferAddress(globalBuf))) + offset,
48 nativeDecodeByteArray(JNIEnv* env, jobject clazz, jbyteArray byteArray, jint offset, jint length) argument
62 nativeDecodeByteBuffer(JNIEnv* env, jobject clazz, jobject buf, jint offset, jint limit) argument
/frameworks/native/include/media/hardware/
H A DHDCPAPI.h113 // at location "offset" are available in "buffer" (buffer handle). "size"
122 buffer_handle_t buffer, size_t offset, size_t size,
121 encryptNative( buffer_handle_t buffer, size_t offset, size_t size, uint32_t streamCTR, uint64_t *outInputCTR, void *outData) argument
/frameworks/native/opengl/libagl/
H A Dmipmap.cpp62 size_t offset = (y*2) * bs; local
64 uint32_t p00 = src[offset];
65 uint32_t p10 = src[offset+1];
66 uint32_t p01 = src[offset+bs];
67 uint32_t p11 = src[offset+bs+1];
75 offset += 2;
84 size_t offset = (y*2) * bs; local
86 uint32_t p00 = src[offset];
87 uint32_t p10 = src[offset+1];
88 uint32_t p01 = src[offset
104 size_t offset = (y*2) * bs; local
142 size_t offset = (y*2) * bs; local
160 size_t offset = (y*2) * bs; local
[all...]
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DYearPickerView.java128 public void postSetSelectionFromTop(final int position, final int offset) { argument
133 setSelectionFromTop(position, offset);
/frameworks/opt/setupwizard/library/eclair-mr1/src/com/android/setupwizardlib/util/
H A DLinkAccessibilityHelper.java74 final int offset = getOffsetForPosition(mView, x, y);
75 ClickableSpan[] linkSpans = spannedText.getSpans(offset, offset, ClickableSpan.class);
103 Log.e(TAG, "LinkSpan is null for offset: " + virtualViewId);
115 Log.e(TAG, "LinkSpan is null for offset: " + virtualViewId);
140 Log.e(TAG, "LinkSpan is null for offset: " + virtualViewId);
146 private ClickableSpan getSpanForOffset(int offset) { argument
150 ClickableSpan[] spans = spannedText.getSpans(offset, offset, ClickableSpan.class);
189 outRect.offset(mVie
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DIccUtils.java43 bcdToString(byte[] data, int offset, int length) { argument
46 for (int i = offset ; i < offset + length ; i++) {
67 bchToString(byte[] data, int offset, int length) { argument
70 for (int i = offset ; i < offset + length ; i++) {
87 cdmaBcdToString(byte[] data, int offset, int length) { argument
91 for (int i = offset; count < length; i++) {
186 * remaining seven bits are an offset value added to the
195 adnStringFieldToString(byte[] data, int offset, in argument
358 networkNameToString(byte[] data, int offset, int length) argument
529 getCLUT(byte[] rawData, int offset, int number) argument
[all...]
/frameworks/rs/java/tests/RsBLAS_Benchmark/src/com/example/android/rs/blasbenchmark/
H A DSGEMMTest.java96 // Transform byte data into float, given a offset.
97 private float[] byteToFloat(byte[] input, int offset) { argument
100 output[i] = (float)(input[i] - offset);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DItemAlignmentFacet.java58 * Sets number of pixels to offset. Can be negative for alignment from the high edge, or
61 public final void setItemAlignmentOffset(int offset) { argument
62 mOffset = offset;
66 * Gets number of pixels to offset. Can be negative for alignment from the high edge, or
74 * Sets whether to include left/top padding for positive item offset, include
75 * right/bottom padding for negative item offset.
82 * When it is true: we include left/top padding for positive item offset, include
83 * right/bottom padding for negative item offset.
90 * Sets the offset percent for item alignment in addition to offset
[all...]
/frameworks/support/v17/tests/src/android/support/v17/leanback/app/wizard/
H A DGuidedDatePickerTest.java156 int offset = SCROLL_DIR == KeyEvent.KEYCODE_DPAD_DOWN ? 1 : -1;
157 addDate(currentActionCal, field, offset, minCal, maxCal);
167 private void addDate(Calendar mCurrentDate, int field, int offset, argument
180 if ( offset > 0 ) {
182 actualMaxFieldValue - mCurrentDate.get(field), offset);
189 actualMinFieldValue - mCurrentDate.get(field), offset);
190 mCurrentDate.add(field, Math.max(offset, maxOffset));
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DOrientationHelper.java189 * @param view View to offset
190 * @param offset offset amount
192 public abstract void offsetChild(View view, int offset); argument
321 public void offsetChild(View view, int offset) {
322 view.offsetLeftAndRight(offset);
419 public void offsetChild(View view, int offset) {
420 view.offsetTopAndBottom(offset);
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DChildHelperTest.java136 public View getChildAt(int offset) { argument
137 if (validateIndex(offset)) {
138 return mViews.remove(offset);
160 public void detachViewFromParent(int offset) { argument
161 mDetached.add(getChildAt(offset));
H A DLinearLayoutManagerSavedStateTest.java119 return "scroll to position with positive offset";
133 return "scroll to position with negative offset";
370 void scrollToPositionWithOffset(final int position, final int offset) { argument
374 layoutManager().scrollToPositionWithOffset(position, offset);
/frameworks/wilhelm/src/itf/
H A DIDynamicInterfaceManagement.c54 size_t offset = x->mOffset; local
55 void *thisItf = (char *) thisObject + offset;
162 size_t offset = x->mOffset; local
163 void *thisItf = (char *) thisObject + offset;
231 size_t offset = x->mOffset; local
232 void *thisItf = (char *) thisObject + offset;
310 size_t offset = x->mOffset; local
311 void *thisItf = (char *) thisObject + offset;
410 size_t offset = x->mOffset; local
411 void *thisItf = (char *) thiz + offset;
[all...]
/frameworks/wilhelm/tests/examples/
H A DslesTestPlayFdPath.cpp71 void TestPlayPathFromFD( SLObjectItf sl, const char* path, SLAint64 offset, SLAint64 size) argument
139 locatorFd.offset = offset;
230 fprintf(stdout, "starting at the specified offset, and using the specified length.\n");
/frameworks/av/cmds/stagefright/
H A Dcodec.cpp190 0 /* offset */,
216 0 /* offset */,
252 size_t offset; local
257 &index, &offset, &size, &presentationTimeUs, &flags,

Completed in 343 milliseconds

1234567891011>>