HomeSort by relevance Sort by last modified time
    Searched full:limits (Results 626 - 650 of 7158) sorted by null

<<21222324252627282930>>

  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/
spirv_validator_options.h 24 // Default initialization of this structure is to the default Universal Limits
  /system/core/base/include/android-base/
parsedouble.h 23 #include <limits>
  /toolchain/binutils/binutils-2.27/gold/testsuite/
arm_bl_out_of_range.s 2 # Test ARM bl instructions just out of the branch range limits.
arm_thm_jump11.s 2 # Test R_ARM_THM_JUMP11 relocations just within the branch range limits.
arm_thm_jump8.s 2 # Test R_ARM_THM_JUMP8 relocations just within the branch range limits.
thumb_bl_in_range.s 2 # Test THUMB/THUMB-2 bl instructions just within the branch range limits.
thumb_bl_out_of_range.s 2 # Test THUMB/THUMB-2 bl instructions just out of the branch range limits.
thumb_bl_out_of_range_local.s 2 # Test THUMB/THUMB-2 bl instructions just out of the branch range limits
thumb_blx_in_range.s 3 # Test THUMB/THUMB-2 blx instructions just within the branch range limits.
  /tools/test/connectivity/tools/lab/utils/
time_limit.py 22 """A class that limits the execution time of functions.
  /external/deqp/framework/platform/android/
tcuAndroidPlatform.cpp 323 void Platform::getMemoryLimits (vk::PlatformMemoryLimits& limits) const
330 limits.totalSystemMemory = de::max((size_t)(double(deInt64(m_totalSystemMemory)-deInt64(baseMemUsage)) * safeUsageRatio), 16*MiB);
333 limits.totalDeviceLocalMemory = 0;
336 limits.deviceMemoryAllocationGranularity = 64*1024;
337 limits.devicePageSize = 4096;
338 limits.devicePageTableEntrySize = 8;
339 limits.devicePageTableHierarchyLevels = 3;
  /external/icu/icu4c/source/layoutex/layout/
plruns.h 51 * @param limits is the address of an array of limit indices. This array must remain valid until
60 const le_int32 *limits,
184 * @param limits is the address of an array of limit indices. This array must remain valid until
193 const le_int32 *limits,
197 * Construct an empty <code>pl_valueRuns</code> object. Clients can add values and limits
316 * @param limits is the address of an array of limit indices. This array must remain valid until
325 const le_int32 *limits,
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ObjectYAML/
WasmYAML.h 48 struct Limits {
56 Limits TableLimits;
169 std::vector<Limits> Memories;
241 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::Limits)
288 template <> struct MappingTraits<WasmYAML::Limits> {
289 static void mapping(IO &IO, WasmYAML::Limits &Limits);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ObjectYAML/
WasmYAML.h 48 struct Limits {
56 Limits TableLimits;
169 std::vector<Limits> Memories;
241 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::Limits)
288 template <> struct MappingTraits<WasmYAML::Limits> {
289 static void mapping(IO &IO, WasmYAML::Limits &Limits);
  /build/soong/cmd/multiproduct_kati/
main.go 167 var limits syscall.Rlimit
169 err := syscall.Getrlimit(syscall.RLIMIT_NOFILE, &limits)
175 log.Verbosef("Current file limits: %d soft, %d hard", limits.Cur, limits.Max)
176 if limits.Cur == limits.Max {
180 limits.Cur = limits.Max
181 err = syscall.Setrlimit(syscall.RLIMIT_NOFILE, &limits)
    [all...]
  /external/skia/src/core/
SkLineClipper.cpp 14 // now the limits are sorted
32 // our original limits
53 // our original limits
148 // return value between the two limits, where the limits are either ascending
  /external/skqp/src/core/
SkLineClipper.cpp 14 // now the limits are sorted
32 // our original limits
53 // our original limits
148 // return value between the two limits, where the limits are either ascending
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
quota.h 67 * before the soft limits are treated as hard limits (usually resulting
106 # define Q_GETQUOTA 0x0300 /* get limits and usage */
107 # define Q_SETQUOTA 0x0400 /* set limits and usage */
110 # define Q_SETQLIM 0x0700 /* set limits */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
quota.h 67 * before the soft limits are treated as hard limits (usually resulting
106 # define Q_GETQUOTA 0x0300 /* get limits and usage */
107 # define Q_SETQUOTA 0x0400 /* set limits and usage */
110 # define Q_SETQLIM 0x0700 /* set limits */
  /external/deqp/framework/platform/surfaceless/
tcuSurfacelessPlatform.cpp 129 // FINISHME: Query actual memory limits.
131 // These hard-coded memory limits were copied from tcuX11Platform.cpp,
133 void getMemoryLimits (vk::PlatformMemoryLimits& limits) const
135 limits.totalSystemMemory = 256*1024*1024;
136 limits.totalDeviceLocalMemory = 128*1024*1024;
137 limits.deviceMemoryAllocationGranularity = 64*1024;
138 limits.devicePageSize = 4096;
139 limits.devicePageTableEntrySize = 8;
140 limits.devicePageTableHierarchyLevels = 3;
  /external/icu/icu4c/source/test/intltest/
tchcfmt.cpp 45 double limits[] = {1,2,3,4,5,6,7}; local
47 ChoiceFormat* form = new ChoiceFormat(limits, monthNames, 7);
75 ChoiceFormat* formequal=new ChoiceFormat(limits, monthNames, 7);
105 if(gotLimits[ix] != limits[ix]){
106 errln((UnicodeString)"getLimits didn't get the limits correctly. Expected " + limits[ix] + " Got " + gotLimits[ix]);
471 double limits[] = { 0, 1, 2, 3, 4, 5 }; local
476 ChoiceFormat fmt1(limits, closures, fmts, 6);
509 errln("FAIL: couldn't get limits or closures");
516 if(limits2[i] != limits[i])
638 static const double limits[] = {0.1e-78, 1e13, 0.1e78}; local
    [all...]
  /external/python/cpython3/Doc/library/
resource.rst 30 Resource Limits
34 below. Each resource is controlled by a pair of limits: a soft limit and a hard
55 Returns a tuple ``(soft, hard)`` with the current soft and hard limits of
60 .. function:: setrlimit(resource, limits)
62 Sets new limits of consumption of *resource*. The *limits* argument must be a
63 tuple ``(soft, hard)`` of two integers describing the new limits. A value of
79 .. function:: prlimit(pid, resource[, limits])
82 supports to get and set the resources limits of an arbitrary process. If
84 *limits* have the same meaning as in :func:`setrlimit`, except tha
    [all...]
  /external/pcre/dist2/doc/html/
pcre2stack.html 127 You can set limits on the number of times the internal <b>match()</b> function
129 <b>pcre2_match()</b> returns an error code. Setting suitable limits should
130 prevent it from running out of stack. The default values of the limits are very
149 applied to a subject line, causes it to find the smallest limits that allow a a
151 different limits.
173 This reads the current limits (soft and hard) using <b>getrlimit()</b>, then
  /external/pcre/dist2/doc/
pcre2stack.3 118 You can set limits on the number of times the internal \fBmatch()\fP function
120 \fBpcre2_match()\fP returns an error code. Setting suitable limits should
121 prevent it from running out of stack. The default values of the limits are very
145 applied to a subject line, causes it to find the smallest limits that allow a a
147 different limits.
169 This reads the current limits (soft and hard) using \fBgetrlimit()\fP, then
  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
primtypes.swg 120 %numeric_slong(signed char, "<limits.h>", SCHAR_MIN, SCHAR_MAX)
121 %numeric_ulong(unsigned char, "<limits.h>", UCHAR_MAX)
125 %numeric_slong(short, "<limits.h>", SHRT_MIN, SHRT_MAX)
126 %numeric_ulong(unsigned short, "<limits.h>", USHRT_MAX)
130 %numeric_slong(int, "<limits.h>", INT_MIN, INT_MAX)
131 %numeric_ulong(unsigned int, "<limits.h>", UINT_MAX)

Completed in 1806 milliseconds

<<21222324252627282930>>