HomeSort by relevance Sort by last modified time
    Searched defs:Fragment (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/
DebugSubsectionVisitor.cpp 35 DebugLinesSubsectionRef Fragment;
36 if (auto EC = Fragment.initialize(Reader))
39 return V.visitLines(Fragment, State);
42 DebugChecksumsSubsectionRef Fragment;
43 if (auto EC = Fragment.initialize(Reader))
46 return V.visitFileChecksums(Fragment, State);
49 DebugInlineeLinesSubsectionRef Fragment;
50 if (auto EC = Fragment.initialize(Reader))
52 return V.visitInlineeLines(Fragment, State);
91 DebugUnknownSubsectionRef Fragment(R.kind(), R.getRecordData())
    [all...]
  /cts/tests/app/src/android/app/cts/
FragmentTest.java 19 import android.app.Fragment;
24 public static class TestFragment extends Fragment {
35 assertNotNull(Fragment.instantiate(getContext(), TestFragment.class.getName()));
40 Fragment.instantiate(getContext(), TestNotFragment.class.getName());
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/IScsiDxe/
IScsiTcp4Io.c 363 // Build the fragment table.
420 NET_FRAGMENT *Fragment;
425 Fragment = AllocatePool (FragmentCount * sizeof (NET_FRAGMENT));
426 if (Fragment == NULL) {
430 // Build the fragment table.
432 NetbufBuildExt (Packet, Fragment, &FragmentCount);
441 RxData.DataLength = Fragment[CurrentFragment].Len;
442 RxData.FragmentTable[0].FragmentLength = Fragment[CurrentFragment].Len;
443 RxData.FragmentTable[0].FragmentBuffer = Fragment[CurrentFragment].Bulk;
474 Fragment[CurrentFragment].Len -= RxData.FragmentTable[0].FragmentLength;
    [all...]
IScsiProto.c 965 NET_FRAGMENT Fragment[2];
1038 Fragment[0].Len = Len;
1039 Fragment[0].Bulk = Context->InData + InDataOffset;
1046 Fragment[1].Len = PadLen + (DataDigest ? sizeof (UINT32) : 0);
1047 Fragment[1].Bulk = (UINT8 *)PadAndCRC32 + (4 - PadLen);
1053 DataSeg = NetbufFromExt (&Fragment[0], FragmentCount, 0, 0, IScsiNbufExtFree, NULL);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4Output.c 27 Fragment, Ttl, Protocol, Src and Dst. All the fields
55 FirstFragment = IP4_FIRST_FRAGMENT (Head->Fragment);
78 PacketHead->Fragment = HTONS (Head->Fragment);
182 (IpInstance == NULL). It will route the packet, fragment it,
191 Fragment, Protocol, Src and Dst. All the fields are
193 Ver, HeadLen, Fragment, and checksum. The Fragment
231 NET_BUF *Fragment;
333 // OK, selected the source and route, fragment the packet then send
    [all...]
Ip4Input.c 81 NET_BUF *Fragment;
84 Fragment = NET_LIST_USER_STRUCT (Entry, NET_BUF, List);
87 NetbufFree (Fragment);
210 @param Packet The fragment to assemble. It might be freed if the fragment
230 NET_BUF *Fragment;
278 // fragment with THIS.Start < CUR.Start. the previous one
284 Fragment = NET_LIST_USER_STRUCT (Cur, NET_BUF, List);
286 if (This->Start < IP4_GET_CLIP_INFO (Fragment)->Start) {
292 // Check whether the current fragment overlaps with the previous one.
    [all...]
  /external/deqp/framework/referencerenderer/
rrFragmentOperations.hpp 23 * \brief Reference implementation for per-fragment operations.
46 struct Fragment
54 Fragment (const tcu::IVec2& pixelCoord_, const GenericVec4& value_, deUint32 coverage_, const float* sampleDepths_)
63 Fragment (const tcu::IVec2& pixelCoord_, const GenericVec4& value_, const GenericVec4& value1_, deUint32 coverage_, const float* sampleDepths_)
72 Fragment (void)
90 * \brief Reference fragment renderer.
104 const Fragment* fragments,
134 void executeScissorTest (int fragNdxOffset, int numSamplesPerFragment, const Fragment* inputFragments, const WindowRectangle& scissorRect);
135 void executeStencilCompare (int fragNdxOffset, int numSamplesPerFragment, const Fragment* inputFragments, const StencilState& stencilState, int numStencilBits, const tcu::ConstPixelBufferAccess& stencilBuffer);
136 void executeStencilSFail (int fragNdxOffset, int numSamplesPerFragment, const Fragment* inputFragments, const StencilState& stencilState, int numStencilBits, const tcu::PixelBufferAcces (…)
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeTcpIoLib/
DxeTcpIoLib.c 791 // Build the fragment table.
887 NET_FRAGMENT *Fragment;
930 Fragment = AllocatePool (FragmentCount * sizeof (NET_FRAGMENT));
931 if (Fragment == NULL) {
936 // Build the fragment table.
938 NetbufBuildExt (Packet, Fragment, &FragmentCount);
945 RxData->DataLength = Fragment[CurrentFragment].Len;
946 RxData->FragmentTable[0].FragmentLength = Fragment[CurrentFragment].Len;
947 RxData->FragmentTable[0].FragmentBuffer = Fragment[CurrentFragment].Bulk;
992 Fragment[CurrentFragment].Len -= RxData->FragmentTable[0].FragmentLength;
    [all...]
  /external/llvm/lib/MC/
WinCOFFStreamer.cpp 254 MCFillFragment *Fragment = new MCFillFragment(
256 Symbol->setFragment(Fragment);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
DebugHandlerBase.cpp 212 const DIExpression *Fragment = I->first->getDebugExpression();
215 return !Fragment->fragmentsOverlap(
DwarfExpression.cpp 105 // For example, EAX on x86_64 is a 32-bit fragment of RAX with offset 0.
212 auto Fragment = ExprCursor.getFragmentInfo();
213 if (!addMachineReg(TRI, MachineReg, Fragment ? Fragment->SizeInBits : ~1U)) {
318 // The fragment offset must have already been adjusted by emitting an
321 assert(OffsetInBits >= FragmentOffset && "fragment offset not added?");
329 // sub-register that is smaller than the current fragment's size, use it.
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
SockImpl.c 168 EFI_TCP4_FRAGMENT_DATA *Fragment;
181 Fragment = &RxData->FragmentTable[Index];
182 CopyBytes = MIN ((UINT32) (Fragment->FragmentLength), RcvdBytes);
188 Fragment->FragmentBuffer
191 Fragment->FragmentLength = CopyBytes;
  /device/linaro/bootloader/edk2/NetworkPkg/HttpDxe/
HttpImpl.c 951 NET_FRAGMENT Fragment;
969 Fragment.Len = 0;
970 Fragment.Bulk = NULL;
    [all...]
HttpProto.c     [all...]
HttpsSupport.c 600 // Build the fragment table.
634 // Build the fragment table.
695 NET_FRAGMENT *Fragment;
707 Fragment = AllocatePool (FragmentCount * sizeof (NET_FRAGMENT));
708 if (Fragment == NULL) {
714 // Build the fragment table.
716 NetbufBuildExt (Packet, Fragment, &FragmentCount);
737 Tcp4RxData->DataLength = Fragment[CurrentFragment].Len;
738 Tcp4RxData->FragmentTable[0].FragmentLength = Fragment[CurrentFragment].Len;
739 Tcp4RxData->FragmentTable[0].FragmentBuffer = Fragment[CurrentFragment].Bulk
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
SockImpl.c 203 EFI_TCP4_FRAGMENT_DATA *Fragment;
219 Fragment = &RxData->FragmentTable[Index];
220 CopyBytes = MIN ((UINT32) (Fragment->FragmentLength), RcvdBytes);
226 Fragment->FragmentBuffer
229 Fragment->FragmentLength = CopyBytes;
  /external/clang/unittests/ASTMatchers/
ASTMatchersNodeTest.cpp     [all...]
ASTMatchersTraversalTest.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
WinCOFFStreamer.cpp 224 SD.Fragment = RealSD.Fragment;
375 MCInstFragment *Fragment =
378 raw_svector_ostream VecOS(Fragment->getCode());
381 Fragment->getFixups());
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeNetLib/
NetBuffer.c 359 also can be used to get the fragment that contains the byte which is used
801 // non-empty fragment.
878 Build a fragment table to contain the fragments in the net buffer. This is the
887 @retval EFI_SUCCESS Fragment table is built successfully.
949 NET_FRAGMENT *Fragment;
970 Fragment = AllocatePool (sizeof (NET_FRAGMENT) * FragmentNum);
972 if (Fragment == NULL) {
984 Fragment[Current].Bulk = Nbuf->BlockOp[Index].Head;
985 Fragment[Current].Len = Nbuf->BlockOp[Index].Size;
991 Nbuf = NetbufFromExt (Fragment, Current, HeadSpace, HeaderLen, ExtFree, Arg);
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Input.c 74 NET_BUF *Fragment;
77 Fragment = NET_LIST_USER_STRUCT (Entry, NET_BUF, List);
80 NetbufFree (Fragment);
156 @param[in] Packet The fragment to assemble. It might be freed if the fragment
177 NET_BUF *Fragment;
228 // fragment with THIS.Start < CUR.Start. the previous one
234 Fragment = NET_LIST_USER_STRUCT (Cur, NET_BUF, List);
236 if (This->Start < IP6_GET_CLIP_INFO (Fragment)->Start) {
242 // Check whether the current fragment overlaps with the previous one.
    [all...]
Ip6Output.c 355 Prefix an IP6 basic head and unfragmentable extension headers and a fragment header
361 @param[in] FragmentOffset The fragment offset of the data following the header.
452 (IpInstance == NULL). It will route the packet, fragment it,
514 NET_BUF *Fragment;
762 // Destination. If yes include a Fragment Header in the subsequent packets.
774 // Options header (first occur), Routing header, and before Fragment header,
810 // OK, selected the source and route, fragment the packet then send
811 // them. Tag each fragment other than the first one as spawn from it.
820 // Remove the inserted Fragment Header since we need fragment the packet.
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/HttpBootDxe/
HttpBootDhcp4.h 197 CHAR8 *Fragment; /// TODO: may not required in HTTP URL
  /device/linaro/bootloader/edk2/StdLib/EfiSocketLib/
Socket.c     [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/IScsiDxe/
IScsiProto.c     [all...]

Completed in 1241 milliseconds

1 2 3