HomeSort by relevance Sort by last modified time
    Searched full:extract (Results 2001 - 2025 of 8518) sorted by null

<<81828384858687888990>>

  /external/libbrillo/brillo/dbus/
dbus_method_invoker.h 171 // A helper method to extract a list of values from a message buffer.
193 // Convenient helper method to extract return value(s) of a D-Bus method call.
206 CHECK(message) << "Unable to extract parameters from a NULL message.";
  /external/llvm/include/llvm/IR/
Metadata.h 457 /// mdconst::extract <=> cast
508 /// \brief Extract a Value from Metadata.
510 /// As an analogue to \a cast(), extract the \a Value subclass \c X from \c MD.
513 extract(Y &&MD) { function in namespace:llvm::mdconst
519 extract(Y &MD) { function in namespace:llvm::mdconst
520 return extract(&MD);
523 /// \brief Extract a Value from Metadata, allowing null.
525 /// As an analogue to \a cast_or_null(), extract the \a Value subclass \c X
535 /// \brief Extract a Value from Metadata, if any.
537 /// As an analogue to \a dyn_cast_or_null(), extract the \a Value subclass \c
    [all...]
  /external/llvm/lib/IR/
Metadata.cpp 907 APFloat AVal = mdconst::extract<ConstantFP>(A->getOperand(0))->getValueAPF();
908 APFloat BVal = mdconst::extract<ConstantFP>(B->getOperand(0))->getValueAPF();
970 ConstantInt *ALow = mdconst::extract<ConstantInt>(A->getOperand(2 * AI));
971 ConstantInt *BLow = mdconst::extract<ConstantInt>(B->getOperand(2 * BI));
975 mdconst::extract<ConstantInt>(A->getOperand(2 * AI + 1)));
979 mdconst::extract<ConstantInt>(B->getOperand(2 * BI + 1)));
984 addRange(EndPoints, mdconst::extract<ConstantInt>(A->getOperand(2 * AI)),
985 mdconst::extract<ConstantInt>(A->getOperand(2 * AI + 1)));
989 addRange(EndPoints, mdconst::extract<ConstantInt>(B->getOperand(2 * BI)),
990 mdconst::extract<ConstantInt>(B->getOperand(2 * BI + 1)))
    [all...]
  /external/llvm/test/CodeGen/AArch64/
arm64-neon-v8.1a.ll 248 %extract = extractelement <2 x i32> %prod, i64 0
249 %retval = call i32 @llvm.aarch64.neon.sqadd.i32(i32 %acc, i32 %extract)
261 %extract = extractelement <4 x i32> %prod, i64 0
262 %retval = call i32 @llvm.aarch64.neon.sqadd.i32(i32 %acc, i32 %extract)
302 %extract = extractelement <2 x i32> %prod, i64 0
303 %retval = call i32 @llvm.aarch64.neon.sqsub.i32(i32 %acc, i32 %extract)
315 %extract = extractelement <4 x i32> %prod, i64 0
316 %retval = call i32 @llvm.aarch64.neon.sqsub.i32(i32 %acc, i32 %extract)
424 %extract = extractelement <4 x i32> %rhs, i32 3
425 %prod = call i32 @llvm.aarch64.neon.sqrdmulh.i32(i32 %mhs, i32 %extract)
    [all...]
  /external/lzma/CPP/7zip/Bundles/SFXCon/
SfxCon.cpp 19 #include "../../UI/Common/Extract.h"
113 " x: eXtract files with full pathname (default)\n"
422 HRESULT result = Extract(
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowResources.java 228 return ((ShadowResourcesImpl.ShadowThemeImpl) Shadow.extract(themeImpl)).getNativePtr();
276 if (drawable != null && Shadow.extract(drawable) instanceof ShadowDrawable) {
280 if (bitmap != null && Shadow.extract(bitmap) instanceof ShadowBitmap) {
  /external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
Metadata.h 473 /// mdconst::extract <=> cast
526 /// \brief Extract a Value from Metadata.
528 /// As an analogue to \a cast(), extract the \a Value subclass \c X from \c MD.
531 extract(Y &&MD) { function in namespace:llvm::mdconst
537 extract(Y &MD) { function in namespace:llvm::mdconst
538 return extract(&MD);
541 /// \brief Extract a Value from Metadata, allowing null.
543 /// As an analogue to \a cast_or_null(), extract the \a Value subclass \c X
553 /// \brief Extract a Value from Metadata, if any.
555 /// As an analogue to \a dyn_cast_or_null(), extract the \a Value subclass \c
    [all...]
  /external/tensorflow/tensorflow/python/keras/_impl/keras/utils/
data_utils_test.py 69 extract=True, cache_subdir=dest_dir)
83 extract=True, cache_subdir=dest_dir)
86 extract=True, cache_subdir=dest_dir)
  /external/vboot_reference/utility/
dev_debug_vboot 42 it will attempt to read the current BIOS, extract the firmware keys, and use
289 # If we've already got a file, just extract everything.
316 "GBB" || logdie "Unable to extract keys from GBB"
  /frameworks/av/media/libmediaplayerservice/
MetadataRetrieverClient.cpp 226 ALOGE("failed to extract image");
245 ALOGE("failed to extract image");
283 ALOGE("failed to extract an album art");
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
sad_mb_offset.h 105 x10 = x5 - (x4 << 8); /* extract low bytes */
201 x10 = x5 - (x4 << 8); /* extract low bytes */
294 x10 = x5 - (x4 << 8); /* extract low bytes */
  /frameworks/base/libs/hwui/
PathParser.cpp 55 static void extract(int* outEndPosition, bool* outEndWithNegOrDot, const char* s, int start, function in namespace:android::uirenderer
98 // our extract range. Otherwise, end position will be where separator is found.
139 extract(&endPosition, &endWithNegOrDot, pathStr, startPosition, end);
  /hardware/interfaces/audio/core/4.0/vts/functional/
AudioPrimaryHidlHalTest.cpp 714 static R extract(Return<R> ret) { function
735 ASSERT_EQ(audioConfig.frameCount, extract(stream->getFrameCount())))
738 ASSERT_EQ(audioConfig.sampleRateHz, extract(stream->getSampleRate())))
741 ASSERT_EQ(audioConfig.channelMask, extract(stream->getChannelMask())))
744 ASSERT_EQ(audioConfig.format, extract(stream->getFormat())))
748 ASSERT_GT(extract(stream->getFrameSize()), 0U))
751 ASSERT_GE(extract(stream->getBufferSize()), extract(stream->getFrameSize())));
769 Property currentValue = extract((stream->*getter)());
785 ASSERT_EQ(capability, extract((stream->*getter)()))
    [all...]
  /libcore/ojluni/src/main/native/
zip_util.h 74 #define LOCVER(b) SH(b, 4) /* version needed to extract */
95 #define CENVER(b) SH(b, 6) /* version needed to extract */
124 #define ZIP64_ENDVER(b) SH(b, 14) /* version needed to extract */
  /packages/apps/Messaging/src/com/android/messaging/util/
UriUtil.java 69 * Extract the path from a file:// Uri, or null if the uri is of other scheme.
169 LogUtil.e(LogUtil.BUGLE_TAG, "Unable extract duration from media file: " + uri, e);
314 * Extract recipient destinations from Uri of form
  /packages/apps/TvSettings/Settings/tests/robotests/src/com/android/tv/settings/
MainFragmentTest.java 27 import static org.robolectric.shadow.api.Shadow.extract;
242 ShadowAccountManager am = extract(AccountManager.get(RuntimeEnvironment.application));
274 ShadowAccountManager am = extract(AccountManager.get(RuntimeEnvironment.application));
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
BasicTTIImpl.h 45 /// Estimate a cost of shuffle as a sequence of extract and insert
53 // e.g. <4 x float> has a mask of <0,5,2,7> i.e we need to extract from
291 /// Estimate the overhead of scalarizing an instruction. Insert and Extract
293 unsigned getScalarizationOverhead(Type *Ty, bool Insert, bool Extract) {
301 if (Extract)
375 // TODO: Once we have extract/insert subvector cost we need to use them.
693 // The interleave cost is similar to extract sub vectors' elements
699 // The cost is estimated as extract elements at 0, 2, 4, 6 from the
708 // Extract elements from loaded vector for each sub vector.
721 // The interleave cost is extract all elements from sub vectors, an
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
Metadata.h 472 /// mdconst::extract <=> cast
525 /// \brief Extract a Value from Metadata.
527 /// As an analogue to \a cast(), extract the \a Value subclass \c X from \c MD.
530 extract(Y &&MD) { function in namespace:llvm::mdconst
536 extract(Y &MD) { function in namespace:llvm::mdconst
537 return extract(&MD);
540 /// \brief Extract a Value from Metadata, allowing null.
542 /// As an analogue to \a cast_or_null(), extract the \a Value subclass \c X
552 /// \brief Extract a Value from Metadata, if any.
554 /// As an analogue to \a dyn_cast_or_null(), extract the \a Value subclass \c
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/CodeGen/
BasicTTIImpl.h 45 /// Estimate a cost of shuffle as a sequence of extract and insert
53 // e.g. <4 x float> has a mask of <0,5,2,7> i.e we need to extract from
353 /// Estimate the overhead of scalarizing an instruction. Insert and Extract
355 unsigned getScalarizationOverhead(Type *Ty, bool Insert, bool Extract) {
363 if (Extract)
437 // TODO: Once we have extract/insert subvector cost we need to use them.
755 // The interleave cost is similar to extract sub vectors' elements
761 // The cost is estimated as extract elements at 0, 2, 4, 6 from the
770 // Extract elements from loaded vector for each sub vector.
783 // The interleave cost is extract all elements from sub vectors, an
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/IR/
Metadata.h 482 /// mdconst::extract <=> cast
535 /// \brief Extract a Value from Metadata.
537 /// As an analogue to \a cast(), extract the \a Value subclass \c X from \c MD.
540 extract(Y &&MD) { function in namespace:llvm::mdconst
546 extract(Y &MD) { function in namespace:llvm::mdconst
547 return extract(&MD);
550 /// \brief Extract a Value from Metadata, allowing null.
552 /// As an analogue to \a cast_or_null(), extract the \a Value subclass \c X
562 /// \brief Extract a Value from Metadata, if any.
564 /// As an analogue to \a dyn_cast_or_null(), extract the \a Value subclass \c
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/CodeGen/
BasicTTIImpl.h 45 /// Estimate a cost of shuffle as a sequence of extract and insert
53 // e.g. <4 x float> has a mask of <0,5,2,7> i.e we need to extract from
353 /// Estimate the overhead of scalarizing an instruction. Insert and Extract
355 unsigned getScalarizationOverhead(Type *Ty, bool Insert, bool Extract) {
363 if (Extract)
437 // TODO: Once we have extract/insert subvector cost we need to use them.
755 // The interleave cost is similar to extract sub vectors' elements
761 // The cost is estimated as extract elements at 0, 2, 4, 6 from the
770 // Extract elements from loaded vector for each sub vector.
783 // The interleave cost is extract all elements from sub vectors, an
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/IR/
Metadata.h 482 /// mdconst::extract <=> cast
535 /// \brief Extract a Value from Metadata.
537 /// As an analogue to \a cast(), extract the \a Value subclass \c X from \c MD.
540 extract(Y &&MD) { function in namespace:llvm::mdconst
546 extract(Y &MD) { function in namespace:llvm::mdconst
547 return extract(&MD);
550 /// \brief Extract a Value from Metadata, allowing null.
552 /// As an analogue to \a cast_or_null(), extract the \a Value subclass \c X
562 /// \brief Extract a Value from Metadata, if any.
564 /// As an analogue to \a dyn_cast_or_null(), extract the \a Value subclass \c
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/IR/
Metadata.h 489 /// mdconst::extract <=> cast
542 /// \brief Extract a Value from Metadata.
544 /// As an analogue to \a cast(), extract the \a Value subclass \c X from \c MD.
547 extract(Y &&MD) { function in namespace:llvm::mdconst
553 extract(Y &MD) { function in namespace:llvm::mdconst
554 return extract(&MD);
557 /// \brief Extract a Value from Metadata, allowing null.
559 /// As an analogue to \a cast_or_null(), extract the \a Value subclass \c X
569 /// \brief Extract a Value from Metadata, if any.
571 /// As an analogue to \a dyn_cast_or_null(), extract the \a Value subclass \c
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/IR/
Metadata.h 489 /// mdconst::extract <=> cast
542 /// \brief Extract a Value from Metadata.
544 /// As an analogue to \a cast(), extract the \a Value subclass \c X from \c MD.
547 extract(Y &&MD) { function in namespace:llvm::mdconst
553 extract(Y &MD) { function in namespace:llvm::mdconst
554 return extract(&MD);
557 /// \brief Extract a Value from Metadata, allowing null.
559 /// As an analogue to \a cast_or_null(), extract the \a Value subclass \c X
569 /// \brief Extract a Value from Metadata, if any.
571 /// As an analogue to \a dyn_cast_or_null(), extract the \a Value subclass \c
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/IR/
Metadata.h 489 /// mdconst::extract <=> cast
542 /// \brief Extract a Value from Metadata.
544 /// As an analogue to \a cast(), extract the \a Value subclass \c X from \c MD.
547 extract(Y &&MD) { function in namespace:llvm::mdconst
553 extract(Y &MD) { function in namespace:llvm::mdconst
554 return extract(&MD);
557 /// \brief Extract a Value from Metadata, allowing null.
559 /// As an analogue to \a cast_or_null(), extract the \a Value subclass \c X
569 /// \brief Extract a Value from Metadata, if any.
571 /// As an analogue to \a dyn_cast_or_null(), extract the \a Value subclass \c
    [all...]

Completed in 1296 milliseconds

<<81828384858687888990>>