Searched refs:RF (Results 1 - 19 of 19) sorted by relevance

/external/llvm/lib/Support/
H A DARMWinEH.cpp16 std::pair<uint16_t, uint32_t> SavedRegisterMask(const RuntimeFunction &RF) { argument
17 uint8_t NumRegisters = RF.Reg();
18 uint8_t RegistersVFP = RF.R();
19 uint8_t LinkRegister = RF.L();
20 uint8_t ChainedFrame = RF.C();
30 if (PrologueFolding(RF))
31 GPRMask |= (((1 << (NumRegisters + 1)) - 1) << (~RF.StackAdjust() & 0x3));
/external/llvm/include/llvm/Support/
H A DARMWinEH.h186 inline bool PrologueFolding(const RuntimeFunction &RF) { argument
187 return RF.StackAdjust() >= 0x3f4 && (RF.StackAdjust() & 0x4);
191 inline bool EpilogueFolding(const RuntimeFunction &RF) { argument
192 return RF.StackAdjust() >= 0x3f4 && (RF.StackAdjust() & 0x8);
197 inline uint16_t StackAdjustment(const RuntimeFunction &RF) { argument
198 uint16_t Adjustment = RF.StackAdjust();
206 std::pair<uint16_t, uint32_t> SavedRegisterMask(const RuntimeFunction &RF);
/external/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp453 const RuntimeFunction &RF) {
454 if (!RF.StartAddress)
458 static_cast<uint32_t>(RF.StartAddress))
460 static_cast<uint32_t>(RF.EndAddress))
462 static_cast<uint32_t>(RF.UnwindInfoOffset));
464 if (Obj->getRvaPtr(RF.UnwindInfoOffset, addr))
476 const RuntimeFunction &RF,
484 RF.StartAddress);
491 RF.EndAddress);
498 RF
452 printRuntimeFunction(const COFFObjectFile *Obj, const RuntimeFunction &RF) argument
475 printRuntimeFunctionRels(const COFFObjectFile *Obj, const RuntimeFunction &RF, uint64_t SectionOffset, const std::vector<RelocationRef> &Rels) argument
[all...]
/external/llvm/tools/llvm-readobj/
H A DWin64EHDumper.h47 const RuntimeFunction &RF);
53 uint64_t SectionOffset, const RuntimeFunction &RF);
H A DWin64EHDumper.cpp163 const RuntimeFunction &RF) {
165 formatSymbol(Ctx, Section, Offset + 0, RF.StartAddress));
167 formatSymbol(Ctx, Section, Offset + 4, RF.EndAddress));
169 formatSymbol(Ctx, Section, Offset + 8, RF.UnwindInfoOffset));
279 const RuntimeFunction &RF) {
281 printRuntimeFunctionEntry(Ctx, Section, SectionOffset, RF);
292 Offset = Offset + RF.UnwindInfoOffset;
320 for (const auto &RF : RuntimeFunctions) {
322 Index * sizeof(RuntimeFunction), RF);
160 printRuntimeFunctionEntry(const Context &Ctx, const coff_section *Section, uint64_t Offset, const RuntimeFunction &RF) argument
276 printRuntimeFunction(const Context &Ctx, const coff_section *Section, uint64_t SectionOffset, const RuntimeFunction &RF) argument
H A DARMWinEHPrinter.cpp599 unsigned Index, const RuntimeFunction &RF) {
600 assert(RF.Flag() == RuntimeFunctionFlag::RFF_Unpacked &&
605 Function = getSymbol(COFF, RF.BeginAddress, /*FunctionOnly=*/true);
609 XDataRecord = getSymbol(COFF, RF.ExceptionInformationRVA());
611 if (!RF.BeginAddress && !Function)
613 if (!RF.UnwindData && !XDataRecord)
625 FunctionAddress = PEHeader->ImageBase + RF.BeginAddress;
649 uint64_t Address = PEHeader->ImageBase + RF.ExceptionInformationRVA();
653 getSectionContaining(COFF, RF.ExceptionInformationRVA());
658 RF
662 dumpPackedEntry(const object::COFFObjectFile &COFF, const SectionRef Section, uint64_t Offset, unsigned Index, const RuntimeFunction &RF) argument
[all...]
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfFileSpecificationDictionary_autogen.cpp119 SkPdfDictionary* SkPdfFileSpecificationDictionary::RF(SkPdfNativeDoc* doc) { function in class:SkPdfFileSpecificationDictionary
120 SkPdfNativeObject* ret = get("RF", "");
128 return get("RF", "") != NULL;
H A DSkPdfFileSpecificationDictionary_autogen.h539 SkPdfDictionary* RF(SkPdfNativeDoc* doc);
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfFileSpecificationDictionary_autogen.cpp119 SkPdfDictionary* SkPdfFileSpecificationDictionary::RF(SkPdfNativeDoc* doc) { function in class:SkPdfFileSpecificationDictionary
120 SkPdfNativeObject* ret = get("RF", "");
128 return get("RF", "") != NULL;
H A DSkPdfFileSpecificationDictionary_autogen.h539 SkPdfDictionary* RF(SkPdfNativeDoc* doc);
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DExternalFunctions.cpp263 std::map<const Function *, RawFunc>::iterator RF = RawFunctions->find(F); local
265 if (RF == RawFunctions->end()) {
273 RawFn = RF->second;
/external/clang/lib/Frontend/
H A DCompilerInstance.cpp262 for (const auto &RF : InitOpts.RemappedFiles) {
264 const FileEntry *ToFile = FileMgr.getFile(RF.second);
266 Diags.Report(diag::err_fe_remap_missing_to_file) << RF.first << RF.second;
272 FileMgr.getVirtualFile(RF.first, ToFile->getSize(), 0);
274 Diags.Report(diag::err_fe_remap_missing_from_file) << RF.first;
H A DASTUnit.cpp1212 for (const auto &RF : PreprocessorOpts.RemappedFiles) {
1213 std::string MPath(RF.first);
1223 Buffer = getBufferForFile(RF.second);
/external/openfst/src/test/
H A Dalgo_test.h679 VectorFst<Arc> RF(T);
686 Reweight(&RF, potential, REWEIGHT_TO_FINAL);
687 CHECK(Equiv(T, RF));
/external/clang/lib/AST/
H A DExprConstant.cpp6829 const FieldDecl *RF = getAsField(RHSDesignator.Entries[Mismatch]);
6830 if (!LF && !RF)
6835 << RF->getParent() << RF;
6836 else if (!RF)
6841 LF->getAccess() != RF->getAccess())
6843 << LF << LF->getAccess() << RF << RF->getAccess()
/external/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp2040 llvm::Value *RF = Builder.CreateExtractValue(R, I); local
2041 llvm::Value *Cmp = Builder.CreateICmp(Eq, LF, RF, "memptr.cmp.rest");
/external/chromium_org/third_party/usb_ids/
H A Dusb.ids1688 16a6 BM-USBD1 BlueRobin RF heart rate sensor receiver
2164 4d75 Rocketfish RF-FLBTAD Bluetooth Adapter
2597 060e RF Dongle
2600 0617 IEEE802.15.4 RF Dongle
2739 1071 ValueOpt RF TX
7370 3509 P3000 RF GamePad
9701 024f RF Receiver and G6-20D Wireless Optical Mouse
10847 0002 RF Technology Receiver
10848 0003 RF Technology Receiver
10849 0008 RF Technolog
[all...]
/external/chromium_org/chrome/third_party/chromevox/
H A DchromeVoxChromePageScript.js386 "LSL","LSL"],LYD:[3,"din","LD"],MAD:[2,"dh","MAD"],MDL:[2,"MDL","MDL"],MGA:[0,"Ar","MGA"],MKD:[2,"din","MKD"],MMK:[0,"K","MMK"],MOP:[2,"MOP","MOP$"],MRO:[0,"MRO","MRO"],MUR:[0,"MURs","MURs"],MWK:[2,"MWK","MWK"],MZN:[2,"MTn","MTn"],NAD:[2,"$","N$"],NGN:[2,"\u20a6","NG\u20a6"],NIO:[2,"C$","C$"],NPR:[2,"Rs","NPRs"],NZD:[2,"$","NZ$"],OMR:[3,"Rial","OMR"],PGK:[2,"PGK","PGK"],PYG:[0,"Gs","PYG"],QAR:[2,"Rial","QR"],RWF:[0,"RF","RF"],SBD:[2,"$","SI$"],SCR:[2,"SCR","SCR"],SDG:[2,"SDG","SDG"],SHP:[2,"\u00a3",
/external/chromium_org/third_party/libjingle/source/talk/media/testdata/
H A Dh264-svc-99-640x360.rtpdump243 ��3�;�8(a��w6��q���?��M��t�M 3�u�GQ��J_��.�ץ��a%��7�.n+������۳K,�%1H���8�w&�A�(T��RF�<��39���YZ�n���2�5�3���s ��En$G=@�yJդҀ��
287 �,�e6��Jv=�~\��!�i�7���q���6S|��mr"�F�R剗�8���+�4�v��X`�~߈�E�[��5��7g��#�80\S�`'=E�}M��"��XԽ��o�b?�:���� =��?�l�gAF?O�@����h<�R�&�]~�m�.��Q޴�t� .k�^!'(*X5z b������CG�8<���Wi�*�f䣘x�RZf:�c�����hY�e���[�&��@3�h�����CQF��k|��ƒv^ � �!�Rg\n/) ���|�2��)�3��Ҩ��2_NI�nJ���!�?���:dd��*�Y����0��,�f {)�E,?�j0�:�VlY�0��|�@�|���(�K������8�c%a��'��f��f�̐r8>����.�� �%v���;1�:�����LLp[�?;�����Q�#�`@|���\�GE��N������'�� En�\��C�m �gL�> ��� �`7�v䝹�����pL*;0�>ffe��J ~�J���u Q�u-�GI.��n?������F�;�V��p�a��M��lP{�W���!����S��E%u���׊�1�rZK�����U �7�RFѷ��������ۊˎ�o�l�Of�F�H9,}��B�}�;ya��ڄ�q��S fpZd� R�9���㜤�V���� ��d�@|��u�s�Q��EvL�LH.���c-��������w:��7�]�k�(+ �EC��/5N��:ۻ��EHC�a�bҽu����}��@TC���X���u��Y h�qSA(��|�T�A/�lQ;���!q���2�\���h�&��Xha�G��M�G�>i�J��p���z�����T7��`���;U�|���2�s����:�U`ݟ?0C�,��@�2Q�p�)��q��*V� �����P�v���wC��%�^�;e9T�g�IVG�7�RpЪq4��ca��9#��+�zxBrvS��:���F�m��caw��m���1���um�$�x���s��礿oǤ�-�ɇ ����#�^��S��a-δ� WJ��j=�G��?�0�>D�|�H�F���jE�_ /y~���6s��a�B\R�r�V�����/��yRKqd�@�G����m�tn{�Ȣ^��{X ��x�0-������OIm�0����������Jmyh�YjH�K����{X�L�pp#?=��g���{��1]O�=5Q|SU�q�α<F��"�% l.��<ȋd�����ȁ��<��&b����p8 ".�g�����D?��S)]��t!o =>/��|�{�|`~�ۏ _� �N �l. �b�m���"+&Cs�0�y�i o�� ����0P0�Y��5p+36`������xE�١nɷ���4�<ư<�۷�u"0pR��W���ðT���rfB��T���|
5283 .C(�v���������2�#n.Qi����tk��K����o���RF��6%�n|�C3���y]w/JӃ�i�UFRYZwV7����kL�_n����u��I����͗|�f�3�y&��ЧV�, �w+�s��>������?�+���K�=^}Q/���p���-�J����W�&�7�Ϟ�N��>���K�w��KAs���vy= L}�?H�wD��HC�'�TP��5�����ҩ�~$�:!��k<�#�o d����n�dgcmz��:��m�/��Ę>��mC����4$׷�|�����[���/ˮ�z\�3NOO�ԗR�1�aCz ����㤍M��� ^���2��v������9���}�SKoՍ�a8����h�tV� d[����d�j�Tj�ԑ��j ����
9112 66����<u��R�g�mko/�B�3���c�� ���ͫK�W��K�~C}=���[I(�ѰY}f��@��sD6�"���U��a��ÑS��E�àdv\�^u�`.�Nxg��e��F��;�nz��z �[X���RF<E�F�͒E�?���'���f�Qh����3��g� �:�<�J�Ǐ�֟o�g#t �) ���K�&�� �%�(�D�8h-�:XD��<}��p�C���0�q��Z��?_G��f9�.�����B���I�Ϟҍ �֏�6�]�/��QK�:�O^Hk��6�|���|#���׌�_����O�$��S!/�c���4���s��##���@��+���d�lcU���?0��j�o
9841 �����/t���*j��(��Q��f��f�meArc�g�A���g�� ءW�'�O�(Ф^��{����~zɒ��$���T;��&B@f�žMɶ�v܋�� ��}��l)�2�2;�m�I&]ߟ� ]��:�N��O��?��E,+{��U�QO��c��8?(�g��O'ʌ/d����#oڊ�e��]S m�a��\2�}��W���z��|%lR��k� Ҧ͌��9I �����:!˔�:`�5P1N��^��$_���P*�tj#��_y�o�(�e!n��d� �_um��$9�*�2E��j�X{�RF��b��?�\5/����»�o��w%���!V�r��ct
16306 �k��C�6g���t�)0��7���v�CG�\7� 2���~���rO���H`h]ɑ1��q.��ſđ�5�KS��ӧSA����o��$4\�M^<�Y�p�}֑}��*��Q�� cC'��E�����U�� �k����z ėS&-u��7�rT�&��1+�\ѝۡ�6�%0��RF�,�

Completed in 448 milliseconds