Searched defs:result (Results 276 - 300 of 680) sorted by last modified time

<<11121314151617181920>>

/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonRelocationFunctions.h22 T1 result = 0; local
29 result |= static_cast<T1>(valBit) << bit;
33 return result;
H A DHexagonRelocator.cpp488 // S + A : result is unsigned truncate.
493 uint32_t result = (uint32_t)(S + A); local
550 if ((shift != 0) && (result % alignment != 0))
553 result >>= shift;
557 if (result > (range - 1))
561 pReloc.target() |= ApplyMask<uint32_t>(bitMask, result);
566 // S + A - P : result is signed verify.
573 uint32_t result; local
655 result = pReloc.addend() + pReloc.symValue() - pReloc.place();
656 pReloc.target() |= ApplyMask<uint32_t>(bitMask, result);
722 int64_t result; local
757 uint32_t result = (uint32_t)(S + A - GP); local
812 uint32_t result = (PLT_S + pReloc.addend() - P) >> 2; local
834 int32_t result = (int32_t)(GOT_S - GOT); local
908 uint32_t result = (uint32_t)(S + A - GOT); local
[all...]
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsGOTPLT.cpp42 uint64_t result = 0; local
46 result += got->size();
48 return result;
H A DMipsPLT.cpp92 uint64_t result = 0x0; local
97 result += MipsPLT0::EntrySize;
103 memcpy(buffer + result, plta->getValue(), MipsPLTA::EntrySize);
104 result += MipsPLTA::EntrySize;
106 return result;
H A DMipsRelocator.cpp83 return MipsRelocationInfo(*m_Parent, m_Type >> 8, result(), result(), 0);
116 Relocation::DWord result() const function in class:mcld::MipsRelocationInfo
121 Relocation::DWord& result() function in class:mcld::MipsRelocationInfo
209 pReloc.target() |= info.result() & mask;
698 pReloc.result() = A + S;
703 pReloc.result() = A;
815 pReloc.result() = S + A;
824 pReloc.result() = S + A;
844 pReloc.result()
[all...]
/frameworks/compile/mclinker/unittests/
H A DELFReaderTest.cpp119 bool result = m_pELFReader->readSymbols(*m_pInput, *m_pIRBuilder, local
121 ASSERT_TRUE(result);
H A DGCFactoryListTraitsTest.h65 Node *result = allocate(); local
66 new (result) Node(pInit);
67 return result;
H A DLEB128Test.cpp48 leb128::ByteType *result; local
51 result = buffer;
52 size = leb128::encode<uint32_t>(result, 2);
54 ASSERT_EQ(result, buffer + 1);
57 result = buffer;
58 size = leb128::encode<uint32_t>(result, 127);
60 ASSERT_EQ(result, buffer + 1);
63 result = buffer;
64 size = leb128::encode<uint32_t>(result, 128);
67 ASSERT_EQ(result, buffe
94 leb128::ByteType *result; local
140 leb128::ByteType *result; local
302 leb128::ByteType *result; local
419 leb128::ByteType *result; local
466 leb128::ByteType *result; local
501 leb128::ByteType *result; local
517 char *result; local
[all...]
H A DStaticResolverTest.cpp62 bool result = m_pResolver->resolve(*old_sym, *new_sym, override, 0x0); local
63 ASSERT_TRUE(result);
88 bool result = m_pResolver->resolve(*old_sym, *new_sym, override, 0x0); local
89 ASSERT_TRUE(result);
115 bool result = m_pResolver->resolve(*old_sym, *new_sym, override, 0x0); local
116 ASSERT_TRUE(result);
142 bool result = m_pResolver->resolve(*old_sym, *new_sym, override, 0x0); local
143 ASSERT_TRUE(result);
164 bool result = m_pResolver->resolve(*old_sym, *new_sym, override, 0x0); local
165 ASSERT_TRUE(result);
193 bool result = m_pResolver->resolve(*old_sym, *new_sym, override, 0x0); local
215 bool result = m_pResolver->resolve(*old_sym, *new_sym, override, 0x0); local
240 bool result = m_pResolver->resolve(*old_sym, *new_sym, override, 0x0); local
264 bool result = m_pResolver->resolve(*old_sym, *new_sym, override, 0x0); local
[all...]
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DAndroidCamera2AgentImpl.java409 CaptureResult result) {
410 checkAfState(result);
416 TotalCaptureResult result) {
417 checkAfState(result);
420 private void checkAfState(CaptureResult result) {
421 if (result.get(CaptureResult.CONTROL_AF_STATE) != null &&
429 mCameraResultStateCallback.monitorControlStates(result);
588 CaptureResult result) {
589 checkAeState(result);
595 TotalCaptureResult result) {
845 monitorControlStates(CaptureResult result) argument
[all...]
/frameworks/ex/camera2/public/src/com/android/ex/camera2/blocking/
H A DBlockingCaptureCallback.java140 TotalCaptureResult result) {
141 if (mProxy != null) mProxy.onCaptureCompleted(session, request, result);
139 onCaptureCompleted(CameraCaptureSession session, CaptureRequest request, TotalCaptureResult result) argument
/frameworks/ex/camera2/public/src/com/android/ex/camera2/pos/
H A DAutoFocusStateMachine.java30 * but automatic camera-caused AF state changes are broadcasted from any new result.</p>
44 void onAutoFocusSuccess(CaptureResult result, boolean locked); argument
51 void onAutoFocusFail(CaptureResult result, boolean locked); argument
59 void onAutoFocusScan(CaptureResult result); argument
67 void onAutoFocusInactive(CaptureResult result); argument
100 * @param result CaptureResult
102 public synchronized void onCaptureCompleted(CaptureResult result) { argument
108 if (result == null) {
109 Log.w(TAG, "onCaptureCompleted - missing result, skipping AF update");
127 Integer afState = result
[all...]
/frameworks/ex/camera2/utils/src/com/android/ex/camera2/utils/
H A DCamera2CaptureCallbackForwarder.java42 final TotalCaptureResult result) {
46 mListener.onCaptureCompleted(session, request, result);
41 onCaptureCompleted(final CameraCaptureSession session, final CaptureRequest request, final TotalCaptureResult result) argument
H A DCamera2CaptureCallbackSplitter.java51 TotalCaptureResult result) {
53 target.onCaptureCompleted(session, request, result);
50 onCaptureCompleted(CameraCaptureSession session, CaptureRequest request, TotalCaptureResult result) argument
/frameworks/ex/common/tools/
H A Dmake-iana-tld-pattern.py145 result = puny.decode('punycode') variable
146 result = repr(result) variable
147 getBucket(buckets, 'xn--').add(result[2:-1])
/frameworks/ex/variablespeed/jni/
H A Dvariablespeed.cc77 #define CheckSLResult(message, result) \
78 CheckSLResult_Real(message, result, __LINE__)
80 // Helper function for debugging - checks the OpenSL result for success.
81 void CheckSLResult_Real(const char* message, SLresult result, int line) { argument
83 // LOGD("sl result %d for %s", result, message);
84 if (SL_RESULT_SUCCESS != result) {
86 static_cast<int>(result), message, line);
88 CHECK(SL_RESULT_SUCCESS == result);
177 // The regular macro: log an api call, make the api call, check the result
369 double result = decodeBuffer_.GetTotalAdvancedCount(); local
466 SLresult result = ReturnOpenSL(audioPlayerQueue, Enqueue, playBuffer, local
544 SLresult result = slCreateEngine(&engine, 1, EngineOption, 0, NULL, NULL); local
[all...]
/frameworks/minikin/libs/minikin/
H A DFontFamily.cpp87 int result = 0; local
89 result++;
91 result++;
94 return result;
166 FakedFont result; local
168 result.font = NULL;
170 result.font = bestFont->typeface;
171 result.fakery = computeFakery(style, bestFont->style);
173 return result;
H A DMinikinFontFreeType.cpp76 const MinikinPaint &paint, GlyphBitmap *result) {
88 result->buffer = bitmap.buffer;
89 result->width = bitmap.width;
90 result->height = bitmap.rows;
91 result->left = mTypeface->glyph->bitmap_left;
92 result->top = mTypeface->glyph->bitmap_top;
75 Render(uint32_t glyph_id, const MinikinPaint &paint, GlyphBitmap *result) argument
/frameworks/compile/libbcc/include/bcc/ExecutionEngine/
H A DSymbolResolvers.h78 const SymbolMap *result = NULL; local
84 result = reinterpret_cast<SymbolMap *>(
93 result = &Subclass::SymbolArray[i];
99 return ((result != NULL) ? result->mAddr : NULL);
/frameworks/compile/libbcc/lib/Core/
H A DSource.cpp80 Source *result = CreateFromModule(pContext, *module, /* pNoDelete */false); local
81 if (result == NULL) {
85 return result;
107 Source *result = CreateFromModule(pContext, *module, /* pNoDelete */false); local
108 if (result == NULL) {
112 return result;
125 Source *result = new (std::nothrow) Source(pContext, pModule, pNoDelete); local
126 if (result == NULL) {
130 return result;
177 Source *result local
[all...]
/frameworks/compile/libbcc/lib/ExecutionEngine/
H A DObjectLoader.cpp33 ObjectLoader *result = NULL; local
42 // Create result object
43 result = new (std::nothrow) ObjectLoader();
44 if (result == NULL) {
52 result->mImpl = new (std::nothrow) ELFObjectLoaderImpl();
53 if (result->mImpl == NULL) {
59 if (!result->mImpl->load(pMemStart, pMemSize)) {
65 if (!result->mImpl->relocate(pResolver)) {
81 result->mDebugImage = new (std::nothrow) uint8_t [ pMemSize ];
82 if (result
108 ObjectLoader *result = NULL; local
[all...]
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSExecutable.cpp51 RSExecutable *result = new (std::nothrow) RSExecutable(pInfo, local
54 if (result == NULL) {
55 ALOGE("Out of memory when create object to hold RS result file for %s!",
70 void *addr = result->getSymbolAddress(name);
72 //ALOGW("RS export var at entry #%u named %s cannot be found in the result "
75 result->mExportVarAddrs.push_back(addr);
87 void *addr = result->getSymbolAddress(name);
89 // ALOGW("RS export func at entry #%u named %s cannot be found in the result"
92 result->mExportFuncAddrs.push_back(addr);
106 void *addr = result
184 DisassembleResult result = local
[all...]
H A DRSInfo.cpp38 android::String8 result(pFilename);
39 result.append(".info");
40 return result;
256 RSInfo::FloatPrecision result = relaxed_pragma_seen ? FP_Relaxed : FP_Full; local
269 result = FP_Relaxed;
273 result = FP_Relaxed;
276 result = FP_Full;
283 return result;
H A DRSInfoExtractor.cpp134 RSInfo *result = NULL; local
154 // Allocate result object
155 result = new (std::nothrow) RSInfo(string_pool_size);
156 if (result == NULL) {
162 if (result->mStringPool == NULL) {
169 result->mStringPool[ cur_string_pool_offset++ ] = '\0';
189 result->mPragmas.push(std::make_pair(
190 writeString(key, result->mStringPool, &cur_string_pool_offset),
191 writeString(val, result->mStringPool, &cur_string_pool_offset)));
207 result
[all...]
H A DRSInfoReader.cpp151 RSInfo *result = NULL; local
227 // File seems ok, create result RSInfo object.
228 result = new (std::nothrow) RSInfo(header->strPoolSize);
229 if (result == NULL) {
238 ::memcpy(&result->mHeader, header, sizeof(rsinfo::Header));
243 if (result->mStringPool == NULL) {
248 ::memcpy(result->mStringPool, data + result->mHeader.headerSize,
249 result->mHeader.strPoolSize);
252 // Populate all the data to the result objec
[all...]

Completed in 311 milliseconds

<<11121314151617181920>>