HomeSort by relevance Sort by last modified time
    Searched defs:Len (Results 251 - 275 of 515) sorted by null

<<11121314151617181920>>

  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbMouseDxe/
UsbMouse.h 51 UINT8 Len;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/EbcDebugger/
EdbSupportUI.c 27 @param Len The length of the string.
40 IN UINTN Len
207 UINTN Len;
235 Len = 0;
274 TailRow = Row + (Len - StrPos + Column) / LineLength;
275 TailColumn = (Len - StrPos + Column) % LineLength;
288 CopyMem (InStr + StrPos, InStr + StrPos + 1, sizeof (CHAR16) * (Len - StrPos));
304 if (Len == StrLength - 1 && (InsertMode || StrPos == Len)) {
313 for (Index = Len; Index > StrPos; Index -= 1) {
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Dhcp4Dxe/
Dhcp4Impl.c 470 UINTN Len;
482 Len = Src->DiscoverTryCount * sizeof (UINT32);
483 Dst->DiscoverTimeout = AllocatePool (Len);
498 Len = Src->RequestTryCount * sizeof (UINT32);
499 Dst->RequestTimeout = AllocatePool (Len);
515 Len = Src->OptionCount * sizeof (EFI_DHCP4_PACKET_OPTION *);
516 Dst->OptionList = AllocateZeroPool (Len);
526 Len = sizeof (EFI_DHCP4_PACKET_OPTION) + MAX (SrcOptions[Index]->Length - 1, 0);
528 DstOptions[Index] = AllocatePool (Len);
534 CopyMem (DstOptions[Index], SrcOptions[Index], Len);
    [all...]
Dhcp4Io.c 966 UINT32 Len;
997 Len = sizeof (EFI_DHCP4_PACKET) + UdpPacket->TotalSize - sizeof (EFI_DHCP4_HEADER);
998 Packet = (EFI_DHCP4_PACKET *) AllocatePool (Len);
1004 Packet->Size = Len;
1180 UINT32 Len;
1186 Len = sizeof (EFI_DHCP4_PACKET) + 128 + DhcpSb->UserOptionLen;
1189 Len += (UINT32)AsciiStrLen ((CHAR8 *) Msg);
1192 Packet = AllocatePool (Len);
1198 Packet->Size = Len;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/IScsiDxe/
IScsiMisc.c 84 UINT8 Len;
101 Len = 0;
105 Len++;
108 return (UINT8) (32 - Len);
358 @param[in] Len Length in bytes of the mac address.
365 IN UINT32 Len,
373 for (Index = 0; Index < Len; Index++) {
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4If.c 563 INTN Len;
567 Len = NetGetMaskLength (SubnetMask);
568 if (Len == IP4_MASK_NUM) {
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
Tcp4Output.c 188 UINT32 Len;
223 Len = MIN (Win, Left);
225 if (Len > Tcb->SndMss) {
226 Len = Tcb->SndMss;
229 if ((Force != 0)|| (Len == 0 && Left == 0)) {
230 return Len;
233 if (Len == 0 && Left != 0) {
245 if ((Len == Tcb->SndMss) || (2 * Len >= Tcb->SndWndMax)) {
247 return Len;
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Dhcp6Dxe/
Dhcp6Utility.c 55 // | OPTION_CLIENTID | option-len |
83 // sizeof (option-len + Duid-type + UUID-size) = 20 bytes
132 // sizeof (option-len + Duid-type + hardware-type + time) = 10 bytes
633 // | option-code | option-len (option data) |
636 // | (option-len octets) |
675 // | OPTION_IAADDR | option-len |
744 UINT16 *Len;
752 // | OPTION_IA_NA | option-len |
773 // Fill the len of Ia option later, keep the pointer first
775 Len = (UINT16 *) Buf;
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/HttpDxe/
HttpsSupport.c 737 Tcp4RxData->DataLength = Fragment[CurrentFragment].Len;
738 Tcp4RxData->FragmentTable[0].FragmentLength = Fragment[CurrentFragment].Len;
742 Tcp6RxData->DataLength = Fragment[CurrentFragment].Len;
743 Tcp6RxData->FragmentTable[0].FragmentLength = Fragment[CurrentFragment].Len;
784 Fragment[CurrentFragment].Len -= Tcp4RxData->FragmentTable[0].FragmentLength;
785 if (Fragment[CurrentFragment].Len == 0) {
796 Fragment[CurrentFragment].Len -= Tcp6RxData->FragmentTable[0].FragmentLength;
797 if (Fragment[CurrentFragment].Len == 0) {
841 UINT32 Len;
864 Len = sizeof (TLS_RECORD_HEADER)
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Mtftp6Dxe/
Mtftp6Support.c 606 UINT32 Len;
611 Len = (UINT32) (AsciiStrLen ((CHAR8 *) ErrInfo) + sizeof (EFI_MTFTP6_ERROR_HEADER));
612 Nbuf = NetbufAlloc (Len);
618 TftpError = (EFI_MTFTP6_PACKET *) NetbufAllocSpace (Nbuf, Len, FALSE);
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
TcpOutput.c 183 UINT32 Len;
217 Len = MIN (Win, Left);
219 if (Len > Tcb->SndMss) {
220 Len = Tcb->SndMss;
223 if ((Force != 0)|| (Len == 0 && Left == 0)) {
224 return Len;
227 if (Len == 0 && Left != 0) {
239 if ((Len == Tcb->SndMss) || (2 * Len >= Tcb->SndWndMax)) {
241 return Len;
    [all...]
  /device/linaro/bootloader/edk2/OptionRomPkg/UndiRuntimeDxe/
Init.c 246 UINTN Len;
479 Len = ((pxe_31->IFcnt|pxe_31->IFcntExt << 8)* sizeof (UndiDataPointer->NII_entry)) + sizeof (UndiDataPointer);
480 Status = gBS->AllocatePool (EfiRuntimeServicesData, Len, (VOID **) &UndiDataPointer);
706 @param Len Determines the width of the data operation.
717 IN UINT8 Len,
727 switch (Len) {
  /device/linaro/bootloader/edk2/OvmfPkg/Library/LoadLinuxLib/
Linux.c 452 UINT8 First, Len;
455 Len = 0;
465 Len++;
469 *Size = Len;
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/Opal/OpalPasswordDxe/
OpalHii.c     [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/UserIdentification/UserProfileManagerDxe/
UserProfileModify.c 1090 UINTN Len;
1095 Len = mUserInfo.AccessPolicyLen + (ExpandLen / 64 + 1) * 64;
1096 Mem = AllocateZeroPool (Len);
    [all...]
  /external/compiler-rt/lib/profile/
InstrProfilingFile.c 356 int Len;
364 Len = strlen(lprofCurFilename.FilenamePat) +
368 Len += SIGLEN;
369 return Len;
  /external/giflib/
egif_lib.c 251 const unsigned char *buf, size_t len)
255 return Private->Write(GifFileOut,buf,len);
257 return fwrite(buf, 1, len, Private->File);
673 size_t Len;
687 Len = EGifGCBToExtension(GCB, (GifByteType *)buf);
691 Len,
    [all...]
  /external/golang-protobuf/proto/
pointer_reflect.go 178 func (p structPointerSlice) Len() int { return p.v.Len() }
209 if len(o.int32s) == 0 {
217 if len(o.uint32s) == 0 {
225 if len(o.float32s) == 0 {
308 n, m := p.v.Len(), p.v.Cap()
326 func (p word32Slice) Len() int {
327 return p.v.Len()
357 if len(o.int64s) == 0 {
365 if len(o.uint64s) == 0
    [all...]
pointer_unsafe.go 160 func (v *structPointerSlice) Len() int { return len(*v) }
174 if len(o.uint32s) == 0 {
214 func (v *word32Slice) Len() int { return len(*v) }
226 if len(o.uint64s) == 0 {
265 func (v *word64Slice) Len() int { return len(*v) }
properties.go 111 if t >= len(p.fastTags) {
123 for len(p.fastTags) < t+1 {
166 func (sp *StructProperties) Len() int { return len(sp.order) }
243 if len(p.Enum) > 0 {
256 if len(fields) < 2 {
302 for i := 2; i < len(fields); i++ {
326 if i+1 < len(fields) {
784 if len(x) != 1 {
785 fmt.Fprintf(os.Stderr, "proto: field index dimension %d (not 1) for type %s\n", len(x), t
    [all...]
text.go 130 if i+1 < len(frags) {
137 w.complete = len(frags[len(frags)-1]) == 0
226 mt := MessageType(parts[len(parts)-1])
298 for j := 0; j < fv.Len(); j++ {
393 if props.proto3 && fv.Kind() == reflect.Slice && fv.Len() == 0 {
576 for i := 0; i < len(s); i++ {
608 if _, err := fmt.Fprintf(w, "/* %d unknown bytes */\n", len(data)); err != nil {
613 for b.index < len(b.buf) {
684 func (s int32Slice) Len() int { return len(s)
    [all...]
  /external/llvm/include/llvm/MC/MCParser/
MCTargetAsmParser.h 66 unsigned Len;
70 AsmRewrite(AsmRewriteKind kind, SMLoc loc, unsigned len = 0, unsigned val = 0)
71 : Kind(kind), Loc(loc), Len(len), Val(val) {}
72 AsmRewrite(AsmRewriteKind kind, SMLoc loc, unsigned len, StringRef label)
73 : Kind(kind), Loc(loc), Len(len), Val(0), Label(label) {}
  /external/llvm/lib/Analysis/
AliasSetTracker.cpp 355 uint64_t Len;
358 Len = C->getZExtValue();
360 Len = MemoryLocation::UnknownSize;
363 addPointer(MSI->getRawDest(), Len, AAInfo, AliasSet::ModAccess, NewPtr);
510 uint64_t Len;
513 Len = C->getZExtValue();
515 Len = MemoryLocation::UnknownSize;
517 AliasSet *AS = mergeAliasSetsForPointer(MSI->getRawDest(), Len, AAInfo);
  /external/llvm/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp 394 size_t Len = strlen(Buffer);
395 memcpy(OutputBuffer, Buffer, Len + 1);
396 OutputBuffer += Len;
464 size_t len = (size_t)Args[2].IntVal.getZExtValue(); local
465 memset((void *)GVTOP(Args[0]), val, len);
  /external/llvm/lib/Fuzzer/
FuzzerDriver.cpp 102 size_t Len = strlen(Name);
104 Param[Len + 1] == '=')
105 return &Param[Len + 2];

Completed in 1006 milliseconds

<<11121314151617181920>>