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

1 2 3 4

  /external/compiler-rt/test/esan/TestCases/
large-stack-linux.c 14 struct rlimit Limit;
15 Limit.rlim_cur = RLIM_INFINITY;
16 Limit.rlim_max = RLIM_INFINITY;
17 Res = setrlimit(RLIMIT_STACK, &Limit);
19 // Probably our environment had a large limit and we ourselves got
20 // re-execed and can no longer raise our limit.
25 fprintf(stderr, "==1234==The stack size limit is beyond the maximum supported.\n");
59 // CHECK-NEXT: =={{[0-9]+}}==The stack size limit is beyond the maximum supported.
66 // CHECK-NEXT: =={{[0-9]+}}==The stack size limit is beyond the maximum supported.
  /device/linaro/bootloader/edk2/UefiCpuPkg/CpuIo2Smm/
CpuIo2Smm.c 73 UINT64 Limit;
111 Limit = (MmioOperation ? MAX_ADDRESS : MAX_IO_PORT_ADDRESS);
113 if (Address > Limit) {
117 MaxCount = RShiftU64 (Limit, Width);
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/CpuIoDxe/
CpuIo.c 107 UINT64 Limit;
161 Limit = (MmioOperation ? MAX_ADDRESS : MAX_IO_PORT_ADDRESS);
163 if (Address > Limit) {
167 MaxCount = RShiftU64 (Limit, Width);
  /device/linaro/bootloader/edk2/UefiCpuPkg/CpuIo2Dxe/
CpuIo2Dxe.c 107 UINT64 Limit;
161 Limit = (MmioOperation ? MAX_ADDRESS : MAX_IO_PORT_ADDRESS);
163 if (Address > Limit) {
167 MaxCount = RShiftU64 (Limit, Width);
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/MonoStatusCode/
PlatformStatusCode.h 192 UINT16 Limit;
  /frameworks/base/packages/Osu/src/com/android/hotspot2/pps/
SubscriptionParameters.java 24 private final List<Limit> mLimits;
41 mLimits.add(new Limit(instance));
47 private static class Limit {
53 private Limit(OMANode node) throws OMAException {
63 return "Limit{" +
  /external/llvm/lib/Analysis/
CFG.cpp 138 // Limit the number of blocks we visit. The goal is to avoid run-away compile
140 unsigned Limit = 32;
153 if (!--Limit) {
  /external/llvm/lib/CodeGen/
InterferenceCache.cpp 184 SlotIndex Limit = BI->First.isValid() ? BI->First : Stop;
186 i != e && RegMaskSlots[i] < Limit; ++i)
241 SlotIndex Limit = BI->Last.isValid() ? BI->Last : Start;
243 i && RegMaskSlots[i-1].getDeadSlot() > Limit; --i)
SpillPlacement.cpp 343 unsigned Limit = bundles->getNumBundles() * 10;
344 while(Limit-- > 0 && !TodoList.empty()) {
  /device/linaro/bootloader/edk2/DuetPkg/PciRootBridgeNoEnumerationDxe/
PcatPciRootBridge.c 60 UINT64 Limit;
253 Limit = (((UINT32)PciConfigurationHeader.Bridge.IoLimit & 0xf0) << 8) | 0x0fff;
256 Limit |= ((UINT32)PciConfigurationHeader.Bridge.IoLimitUpper16 << 16);
258 if (Base < Limit) {
262 if (PrivateData->IoLimit < Limit) {
263 PrivateData->IoLimit = Limit;
271 Limit = (((UINT32)PciConfigurationHeader.Bridge.MemoryLimit & 0xfff0) << 16) | 0xfffff;
272 if (Base < Limit) {
276 if (PrivateData->MemLimit < Limit) {
277 PrivateData->MemLimit = Limit;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/IScsiDxe/
Md5.c 239 UINTN Limit;
241 for (Limit = 64 - Md5Ctx->Count; DataLen >= 64 - Md5Ctx->Count; Limit = 64) {
242 CopyMem (Md5Ctx->M + Md5Ctx->Count, (VOID *)Data, Limit);
246 Data += Limit;
247 DataLen -= Limit;
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Library/PlatformHelperLib/
PlatformHelperLib.c 68 RegVal &= 0x00FFF000; // Set EDS Protected Range Limit (PRL).
175 UINT32 Limit;
184 Limit = SpiBaseAddress + (Length - 1);
190 if (SpiBaseAddress >= ProtectedBase && Limit <= ProtectedLimit) {
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/
EditInputBar.c 68 UINTN Limit;
75 Limit = LastColumn - mPromptLen - 1;
80 // exceed limit
82 if (Size <= Limit) {
85 Buffer = mReturnString + Size - Limit;
96 for (Index = Size; Index < Limit; Index++) {
  /device/linaro/bootloader/edk2/UefiCpuPkg/CpuIoPei/
CpuIoPei.c 118 UINT64 Limit;
165 Limit = (MmioOperation ? MAX_ADDRESS : MAX_IO_PORT_ADDRESS);
167 if (Address > Limit) {
171 MaxCount = RShiftU64 (Limit, Width);
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/check/
Limit.java 25 * Descriptor for a limit which is given by a {@link Rule}.
27 public class Limit {
64 * <li>minimum: no limit
65 * <li>maximum: no limit
68 public Limit() {
  /external/llvm/lib/Target/SystemZ/
SystemZSelectionDAGInfo.cpp 207 SDValue Limit = DAG.getNode(ISD::ADD, DL, PtrVT, Src, Length);
209 Limit, Src, Char);
246 // Search from Src for a null character, stopping once Src reaches Limit.
250 // This can be used for strlen by setting Limit to 0.
254 SDValue Limit) {
258 Limit, Src, DAG.getConstant(0, DL, MVT::i32));
276 SDValue Limit = DAG.getNode(ISD::ADD, DL, PtrVT, Src, MaxLength);
277 return getBoundedStrlen(DAG, DL, Chain, Src, Limit);
  /device/linaro/bootloader/edk2/ArmVirtPkg/PciHostBridgeDxe/
PciRootBridgeIo.c     [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Thunk16/
X86Thunk.c 242 UINT16 Limit;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
Tcp4Output.c 190 UINT32 Limit;
203 Limit = Tcb->SndWl2 + Tcb->SndWnd;
205 if (TCP_SEQ_GT (Limit, Tcb->SndUna + Tcb->CWnd)) {
207 Limit = Tcb->SndUna + Tcb->CWnd;
210 if (TCP_SEQ_GT (Limit, Tcb->SndNxt)) {
211 Win = TCP_SUB_SEQ (Limit, Tcb->SndNxt);
  /device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
TcpOutput.c 185 UINT32 Limit;
198 Limit = Tcb->SndWl2 + Tcb->SndWnd;
200 if (TCP_SEQ_GT (Limit, Tcb->SndUna + Tcb->CWnd)) {
202 Limit = Tcb->SndUna + Tcb->CWnd;
205 if (TCP_SEQ_GT (Limit, Tcb->SndNxt)) {
206 Win = TCP_SUB_SEQ (Limit, Tcb->SndNxt);
  /device/linaro/bootloader/edk2/OvmfPkg/PciHostBridgeDxe/
PciRootBridgeIo.c     [all...]
  /device/linaro/bootloader/edk2/PcAtChipsetPkg/PciHostBridgeDxe/
PciRootBridgeIo.c     [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_diag.cc 241 const uptr Limit = (uptr)-1;
242 return (LHS > Limit - RHS) ? Limit : LHS + RHS;
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 483 // Stop trying after reaching the limit (if any).
484 int Limit = CTRLoopLimit;
485 if (Limit >= 0) {
  /art/runtime/gc/space/
space.h 280 uint8_t* Limit() const {
290 void SetLimit(uint8_t* limit) {
291 limit_ = limit;
304 return Limit() - Begin();
311 return byte_ptr >= Begin() && byte_ptr < Limit();
326 uint8_t* begin, uint8_t* end, uint8_t* limit) :
327 Space(name, gc_retention_policy), begin_(begin), end_(end), limit_(limit) {
336 // Limit of the space.
374 // Size of the space without a limit on its growth. By default this is just the Capacity, but
393 MemMapSpace(const std::string& name, MemMap* mem_map, uint8_t* begin, uint8_t* end, uint8_t* limit,
    [all...]

Completed in 1009 milliseconds

1 2 3 4