/external/swiftshader/third_party/LLVM/lib/Analysis/ |
ScalarEvolutionExpander.cpp | [all...] |
/cts/libs/testserver/src/android/webkit/cts/ |
CtsTestServer.java | 27 import org.apache.http.Header; 484 * value, the server will include a "Expires" header. 493 * a "Last-Modified" header calculated from the value. 581 Header[] auth = request.getHeaders("Authorization"); 674 Header[] cookies = request.getHeaders("Cookie"); 679 for (Header cookie : cookies) { 706 Header agentHeader = request.getFirstHeader("User-Agent"); 742 // AbstractHttpServerConnection.sendResponseHeader()) so we have to set this header [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/C/Common/ |
BasePeCoff.c | 23 VOID *Header;
86 Retrieves the PE or TE Header from a PE/COFF or TE image
92 PeHdr - The buffer in which to return the PE header
94 TeHdr - The buffer in which to return the TE header
98 RETURN_SUCCESS if the PE or TE Header is read,
126 // DOS image header is present, so read the PE header after the DOS image header
131 // Get the PE/COFF Header pointer
136 // Check the PE/COFF Header Signature. If not, then try to get a TE header [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Xml/ |
XmlParser.py | 73 CheckDict = {'DistributionHeader':self.DistP.Header }
76 if self.DistP.Header:
77 DpHeader = self.DistP.Header
125 XmlTreeLevel = ['DistributionPackage', 'Tools', 'Header']
142 XmlTreeLevel = ['DistributionPackage', 'MiscellaneousFiles', 'Header']
173 # Parse Header information
178 self.DistP.Header = DistributionPackageHeader
240 Root.appendChild(Tmp.ToXml(DistP.Header, 'DistributionHeader'))
466 # Check Header
468 XmlTreeLevel = TopXmlTreeLevel + ['Header']
[all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/HiiPack/ |
IfrParse.c | 734 Context->PackHeader = (EFI_HII_IFR_PACK *) malloc (PackHeader->Header.Length);
741 memcpy (Context->PackHeader, PackHeader, PackHeader->Header.Length);
744 Context->IfrBufferLen = PackHeader->Header.Length - sizeof (EFI_HII_IFR_PACK);
[all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/HiiDatabaseDxe/ |
Image.c | 580 @param Database Pointer to HII database list header.
697 ImagePackage->ImagePkgHdr.Header.Length += NewBlockSize;
715 // Fill in image package header.
717 ImagePackage->ImagePkgHdr.Header.Length = sizeof (EFI_HII_IMAGE_PACKAGE_HDR) + NewBlockSize + sizeof (EFI_HII_IIBT_END_BLOCK);
718 ImagePackage->ImagePkgHdr.Header.Type = EFI_HII_PACKAGE_IMAGES;
743 PackageListNode->PackageListHdr.PackageLength += ImagePackage->ImagePkgHdr.Header.Length;
780 @param Database A pointer to the database list header.
[all...] |
/device/linaro/bootloader/edk2/OvmfPkg/VirtioScsiDxe/ |
VirtioScsi.c | 572 ScsiDevicePath->Header.Type = MESSAGING_DEVICE_PATH;
573 ScsiDevicePath->Header.SubType = MSG_SCSI_DP;
574 ScsiDevicePath->Header.Length[0] = (UINT8) sizeof *ScsiDevicePath;
575 ScsiDevicePath->Header.Length[1] = (UINT8) (sizeof *ScsiDevicePath >> 8);
579 *DevicePath = &ScsiDevicePath->Header;
[all...] |
/external/llvm/include/llvm/Object/ |
ELFObjectFile.h | 390 const Elf_Ehdr *Header = EF.getHeader(); 392 if ((Header->e_machine == ELF::EM_ARM || Header->e_machine == ELF::EM_MIPS) && 411 const Elf_Ehdr *Header = EF.getHeader(); 414 if (Header->e_type == ELF::ET_REL) {
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
HeaderFactoryImpl.java | 27 package gov.nist.javax.sip.header; 28 import gov.nist.javax.sip.header.ims.*; /* IMS headers - issued by Miguel Freitas */ 29 import gov.nist.javax.sip.header.extensions.*; // extension headers - pmusgrave 30 import javax.sip.header.*; 485 public javax.sip.header.ExtensionHeader createExtensionHeader( 492 gov.nist.javax.sip.header.ExtensionHeaderImpl ext = 493 new gov.nist.javax.sip.header.ExtensionHeaderImpl(); 755 * @see javax.sip.header.HeaderFactory#createRAckHeader(int, int, java.lang.String) 765 * @see javax.sip.header.HeaderFactory#createRSeqHeader(int) [all...] |
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/ |
LoopUnswitch.cpp | 331 Visited.insert(L->getHeader()); // Branches to header make infinite loops. 352 BasicBlock *Header = currentLoop->getHeader(); 353 TerminatorInst *HeaderTerm = Header->getTerminator(); 354 LLVMContext &Context = Header->getContext(); 358 // If the header block doesn't end with a conditional branch on Cond, we 402 // tail, check the header now. 403 for (BasicBlock::iterator I = Header->begin(), E = Header->end(); I != E; ++I) 510 /// condition in it (a cond branch from its header block to its latch block, 534 // loop header, not the preheader) [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/ |
DWARFAcceleratorTable.cpp | 47 // Check that we can at least read the header. 48 if (!AccelSection.isValidOffset(offsetof(Header, HeaderDataLength)+4)) 49 return make_error<StringError>("Section too small: cannot read header.", 137 void AppleAcceleratorTable::Header::dump(ScopedPrinter &W) const { 138 DictScope HeaderScope(W, "Header"); 365 void DWARFDebugNames::Header::dump(ScopedPrinter &W) const { 366 DictScope HeaderScope(W, "Header"); 379 llvm::Error DWARFDebugNames::Header::extract(const DWARFDataExtractor &AS, 383 return make_error<StringError>("Section too small: cannot read header.", 399 "Section too small: cannot read header augmentation." [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Vectorize/ |
LoopVectorizationLegality.cpp | 574 BasicBlock *Header = TheLoop->getHeader(); 577 Function &F = *Header->getParent(); 596 // If this PHINode is not in the header block, then we know that we 599 if (BB != Header) { 864 BasicBlock *Header = TheLoop->getHeader(); [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/XRay/ |
Trace.cpp | 33 // First 32 bytes of the file will always be the header. We assume a certain 74 // Each record after the header will be 32 bytes, in the following format: 659 FileHeader.Version = Trace.Header.Version; 660 FileHeader.Type = Trace.Header.Type; 661 FileHeader.ConstantTSC = Trace.Header.ConstantTSC; 662 FileHeader.NonstopTSC = Trace.Header.NonstopTSC; 663 FileHeader.CycleFrequency = Trace.Header.CycleFrequency;
|
/external/syzkaller/vendor/golang.org/x/net/http2/ |
server.go | 546 gotTrailerHeader bool // HEADER frame for trailers was seen 550 trailer http.Header // accumulated trailers 551 reqTrailer http.Header // handler's Request.Trailer [all...] |
transport.go | 76 // request header when the Request contains no existing 218 trailer http.Header // accumulated trailers 219 resTrailer *http.Header // client's Response.Trailer 741 // per RFC 7540 section 8.1.2.2: Connection-Specific Header Fields. 744 if v := req.Header.Get("Upgrade"); v != "" { 745 return fmt.Errorf("http2: invalid Upgrade request header: %q", req.Header["Upgrade"]) 747 if vv := req.Header["Transfer-Encoding"]; len(vv) > 0 && (len(vv) > 1 || vv[0] != "" && vv[0] != "chunked") { 748 return fmt.Errorf("http2: invalid Transfer-Encoding request header: %q", vv) 750 if vv := req.Header["Connection"]; len(vv) > 0 && (len(vv) > 1 || vv[0] != "" && vv[0] != "close" && vv[0] != "keep-al (…) [all...] |
/device/linaro/bootloader/edk2/DuetPkg/BootSector/ |
Gpt.S | 103 # Read GPT Header from hard disk to 0x0000:0x0800
271 .byte 0xff # Start Header
275 .byte 0xff # End Header
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/ |
Package.c | 107 @param StringPackageListHeader The String Package List Header.
161 If the Package Header is not of EFI_HII_FONT type, then ASSERT.
178 ASSERT (FwFontPack->Header.Type == EFI_HII_FONT);
195 @param PackHeader Pointer to Framework Font Package header.
219 // Prepare the Header information.
221 FontPack->Header.Length = (UINT32) Size;
222 FontPack->Header.Type = EFI_HII_PACKAGE_SIMPLE_FONTS;
762 @param Package The Package Header.
830 @param Package The Package Header.
|
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/NvmExpressDxe/ |
NvmExpressPassthru.c | [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Library/BootMaintenanceManagerUiLib/ |
Variable.c | 371 Vendor.Header.Type = MESSAGING_DEVICE_PATH;
372 Vendor.Header.SubType = MSG_VENDOR_DP;
380 SetDevicePathNodeLength (&Vendor.Header, sizeof (VENDOR_DEVICE_PATH));
|
/device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/ |
TcgStorageCore.h | 295 TCG_LEVEL0_FEATURE_DESCRIPTOR_HEADER Header;
307 TCG_LEVEL0_FEATURE_DESCRIPTOR_HEADER Header;
318 TCG_LEVEL0_FEATURE_DESCRIPTOR_HEADER Header;
|
/device/linaro/bootloader/edk2/OptionRomPkg/CirrusLogic5430Dxe/ |
CirrusLogic5430.c | 146 // Read the PCI Configuration Header from the PCI Device
331 AcpiDeviceNode.Header.Type = ACPI_DEVICE_PATH;
332 AcpiDeviceNode.Header.SubType = ACPI_ADR_DP;
334 SetDevicePathNodeLength (&AcpiDeviceNode.Header, sizeof (ACPI_ADR_DEVICE_PATH));
842 // Read the PCI Configuration Header from the PCI Device
|
/device/linaro/bootloader/edk2/OvmfPkg/QemuVideoDxe/ |
Driver.c | 123 // Read the PCI Configuration Header from the PCI Device
223 // Read the PCI Configuration Header from the PCI Device
335 AcpiDeviceNode.Header.Type = ACPI_DEVICE_PATH;
336 AcpiDeviceNode.Header.SubType = ACPI_ADR_DP;
338 SetDevicePathNodeLength (&AcpiDeviceNode.Header, sizeof (ACPI_ADR_DEVICE_PATH));
|
/external/llvm/include/llvm/Analysis/ |
LoopInfo.h | 12 // has exactly one entry-point, which is called the header. Note that natural 13 // loops may actually be several loops that share the same header node. 22 // * the number of back edges to the header 73 // The list of blocks in this loop. First entry is the header node. 171 /// Calculate the number of back edges to the loop header. 218 /// if there is only one edge to the header of the loop from outside of the 219 /// loop. If this is the case, the block branching to the header of the loop 225 /// If the given loop's header has exactly one unique predecessor outside the 232 /// A latch block is a block that contains a branch back to the header. 236 /// contains a branch back to the header [all...] |
/external/llvm/lib/Transforms/Scalar/ |
LoopRotation.cpp | 47 "rotation-max-header-size", cl::init(16), cl::Hidden, 48 cl::desc("The default maximum header size for automatic loop rotation")); 77 /// old header into the preheader. If there were uses of the values produced by 102 // and the loop "next" value in the original header. 199 // If the loop header is not one of the loop exiting blocks then 215 // Check size of original header and reject loop if it is very big or we can't 248 // in its header will soon be invalidated. 254 // Find new Loop header. NewHeader is a Header's one and only successor 255 // that is inside loop. Header's other successor is outside th [all...] |
/external/nist-sip/java/gov/nist/javax/sip/address/ |
SipUri.java | 45 import javax.sip.header.Header; 46 import javax.sip.header.HeaderFactory; 147 * header equality enforced in comparison 202 Debug.logError("Cannot get the header factory to parse the header of the sip uris to compare", e); 216 Header header1 = headerFactory.createHeader(hname, RFC2396UrlDecoder.decode(h1)); 217 Header header2 = headerFactory.createHeader(hname, RFC2396UrlDecoder.decode(h2)); 218 // those present in both must match according to the equals method of the corresponding header 221 Debug.logError("Cannot parse one of the header of the sip uris to compare " + a + " " + b, e) [all...] |