HomeSort by relevance Sort by last modified time
    Searched refs:StrLen (Results 176 - 200 of 327) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/ADT/
StringMap.h 40 unsigned StrLen;
43 explicit StringMapEntryBase(unsigned Len) : StrLen(Len) {}
45 unsigned getKeyLength() const { return StrLen; }
130 explicit StringMapEntry(unsigned strLen)
131 : StringMapEntryBase(strLen), second() {}
133 StringMapEntry(unsigned strLen, InitTy &&... InitVals)
134 : StringMapEntryBase(strLen), second(std::forward<InitTy>(InitVals)...) {}
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/ADT/
StringMap.h 40 unsigned StrLen;
43 explicit StringMapEntryBase(unsigned Len) : StrLen(Len) {}
45 unsigned getKeyLength() const { return StrLen; }
130 explicit StringMapEntry(unsigned strLen)
131 : StringMapEntryBase(strLen), second() {}
133 StringMapEntry(unsigned strLen, InitTy &&... InitVals)
134 : StringMapEntryBase(strLen), second(std::forward<InitTy>(InitVals)...) {}
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/ADT/
StringMap.h 40 unsigned StrLen;
43 explicit StringMapEntryBase(unsigned Len) : StrLen(Len) {}
45 unsigned getKeyLength() const { return StrLen; }
130 explicit StringMapEntry(unsigned strLen)
131 : StringMapEntryBase(strLen), second() {}
133 StringMapEntry(unsigned strLen, InitTy &&... InitVals)
134 : StringMapEntryBase(strLen), second(std::forward<InitTy>(InitVals)...) {}
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/SetupBrowserDxe/
Setup.c 674 TmpSize = StrLen (*ResultsData);
675 BufferSize = (TmpSize + StrLen (BrowserStorage->ConfigHdr) + 2) * sizeof (CHAR16);
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/HiKey960/HiKey960Dxe/
HiKey960Dxe.c 414 Args + StrLen (Args), Size - StrLen (Args),
420 Args + StrLen (Args), Size - StrLen (Args),
  /device/linaro/bootloader/edk2/ArmPkg/Library/BdsLib/
BdsAppLoader.c 53 UiStringLen = StrLen (EfiAppName);
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/CapsuleRuntimeDxe/
CapsuleService.c 206 TempVarName = CapsuleVarName + StrLen (CapsuleVarName);
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/EbcDebugger/
EdbSupport.h 354 @param StrLen The max length of string user can input.
362 IN UINTN StrLen
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Variable/RuntimeDxe/
Measurement.c 96 VarNameLength = StrLen (VarName);
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiFileHandleLib/
UefiFileHandleLib.c 677 the lesser of Count and the StrLen() of Source. If appending those D characters
826 if (StrLen (FileInfo->FileName) == 0) {
862 (*FullFileName)[StrLen(*FullFileName) - 1] == L'\\' &&
863 StrLen(*FullFileName) > 1 &&
866 (*FullFileName)[StrLen(*FullFileName) - 1] = CHAR_NULL;
    [all...]
  /device/linaro/bootloader/edk2/Nt32Pkg/CpuRuntimeDxe/
Cpu.c 466 CpuVerStrLen = StrLen(CpuVerStr);
  /device/linaro/bootloader/edk2/Nt32Pkg/Sec/
SecMain.c 139 CharCount = strlen (Buffer);
274 FileNamePtr = (CHAR16 *)malloc (StrLen ((CHAR16 *)FirmwareVolumesStr) * sizeof(CHAR16));
915 IN UINTN *StrLen OPTIONAL
925 StrLen - Length of string
951 if (StrLen != NULL) {
952 *StrLen = Index;
    [all...]
SecMain.h 506 IN UINTN *StrLen OPTIONAL
517 StrLen - TODO: add argument description
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/Opal/OpalPasswordDxe/
OpalDriver.c 150 StrLength = StrLen(Dev->Name16);
155 UnicodeSPrint(PopUpString, StrLen(L"Unlock Disk") + 1, L"Unlock Disk");
157 UnicodeSPrint(PopUpString, StrLen(L"Unlock ") + StrLength + 1, L"Unlock %s", Dev->Name16);
602 StrLength = StrLen(DevName) + 1; // Add one for NULL terminator
  /device/linaro/bootloader/edk2/SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/
SecureBootConfigFileExplorer.c 257 Length = StrLen(LastMatch);
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/
Set.c 41 ConstEnvNameList += StrLen(ConstEnvNameList)+1;
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/SmBiosMiscDxe/
MiscProcessorCacheFunction.c 87 SocketStrLen = StrLen(SocketDesignation);
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/TcgConfigDxe/
TcgConfigImpl.c 202 Size = (StrLen (ConfigRequestHdr) + 32 + 1) * sizeof (CHAR16);
230 *Progress = Request + StrLen (Request);
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
writer.h 175 bool String(const Ch* str) { return String(str, internal::StrLen(str)); }
176 bool Key(const Ch* str) { return Key(str, internal::StrLen(str)); }
  /device/linaro/bootloader/edk2/NetworkPkg/IScsiDxe/
IScsiMisc.c 64 for (Pointer1 = Str + StrLen(Str) - 1; Pointer1 >= Str && *Pointer1 == CharC; Pointer1--) {
67 if (Pointer1 != Str + StrLen(Str) - 1) {
224 TempStr += StrLen (TempStr);
229 ASSERT (StrLen(Str) >= 1);
230 Str[StrLen (Str) - 1] = 0;
232 for (Index = StrLen (Str) - 1; Index > 1; Index = Index - 2) {
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiDevicePathLib/
DevicePathFromText.c 59 NodeNameLength = StrLen (NodeName);
562 DataLength = StrLen (DataStr) / 2;
731 Length = StrLen (DataStr);
1053 Length = (UINT16) (sizeof (ACPI_EXTENDED_HID_DEVICE_PATH) + StrLen (HIDSTRStr) + 1);
1054 Length = (UINT16) (Length + StrLen (UIDSTRStr) + 1);
1055 Length = (UINT16) (Length + StrLen (CIDSTRStr) + 1);
1097 Length = (UINT16) (sizeof (ACPI_EXTENDED_HID_DEVICE_PATH) + StrLen (UIDSTRStr) + 3);
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/BdsDxe/DeviceMngr/
DeviceManager.c 868 NewStringLen = StrLen(mSelectedMacAddrString) * 2;
869 NewStringLen += (StrLen(String) + 2) * 2;
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/
MainHexEditor.c 183 if (StrLen (InputBarGetString()) > 0) {
352 if (StrLen (Str) >= 50) {
390 if (StrLen (InputBarGetString()) == 0) {
990 if (StrLen (InputBarGetString()) > 0) {
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/
ConfigAccess.c 552 Size = (StrLen (ConfigRequestHdr) + 32 + 1) * sizeof (CHAR16);
594 Size = StrLen (FinalResults);
596 Size = Size + StrLen (SingleResult) + 1;
602 StrPointer = StrPointer + StrLen (StrPointer);
622 *Progress = Request + StrLen (Request);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/DisplayEngineDxe/
FormDisplay.c 375 Size = StrLen (String);
703 if (StrLen (&MenuOption->Description[ArrayEntry]) != 0) {
885 if (StrLen (&OptionString[Index]) != 0) {
    [all...]

Completed in 886 milliseconds

1 2 3 4 5 6 78 91011>>