HomeSort by relevance Sort by last modified time
    Searched refs:MB (Results 226 - 250 of 356) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/src/runtime/
os_dragonfly.go 216 // If there's not at least 16 MB left, we're probably
os_freebsd.go 205 // If there's not at least 16 MB left, we're probably
stack_test.go 16 // The test consumed up to 500MB in the past.
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 385 static bool isRunOfOnes(ConstantInt *Val, uint32_t &MB, uint32_t &ME) {
391 MB = BitWidth - ((V - 1) ^ V).countLeadingZeros();
429 uint32_t MB = 0, ME = 0;
430 if (isRunOfOnes(Mask, MB, ME)) { // begin/end bit of run, inclusive
432 APInt Mask(APInt::getLowBitsSet(BitWidth, MB-1));
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/pprof/internal/report/
report.go 744 // 1MB..2MB, 3MB..5MB, ...
    [all...]
  /prebuilts/go/linux-x86/src/cmd/pprof/internal/report/
report.go 744 // 1MB..2MB, 3MB..5MB, ...
    [all...]
  /external/spirv-llvm/lib/SPIRV/
SPIRVReader.cpp     [all...]
  /art/cmdline/
cmdline_types.h 240 mul = MB;
  /art/runtime/
utils.cc 277 2*1024*1024, // MB up to...
280 static const int64_t kBytesPerUnit[] = { 1, KB, MB, GB };
281 static const char* const kUnitStrings[] = { "B", "KB", "MB", "GB" };
  /external/llvm/lib/Target/PowerPC/
PPCInstrInfo.cpp 339 // M = mask(MB,ME)
342 // M = mask((ME+1)&31, (MB-1)&31)
368 unsigned MB = MI.getOperand(4).getImm();
373 if (MB == 0 && ME == 31)
385 .addImm((MB - 1) & 31);
401 MI.getOperand(5).setImm((MB - 1) & 31);
892 // then mask with 0x1 (MB = ME = 31)
    [all...]
  /external/ltp/
runltp 144 [BYTES = malloc CHUNKS of BYTES bytes (default is 256MB when value 0 or undefined) ]
    [all...]
  /external/v8/src/heap/
mark-compact.h 222 static const size_t kMaxSize = 4 * MB;
  /external/v8/src/parsing/
scanner.h 424 static const int kMaxGrowth = 1 * MB;
  /frameworks/base/libs/hwui/
TessellationCache.cpp 293 : mMaxSize(MB(1))
  /prebuilts/go/darwin-x86/src/testing/
benchmark.go 111 // If this is called, the benchmark will report ns/op and MB/s.
325 mb := ""
327 mb = fmt.Sprintf("\t%7.2f MB/s", mbs)
340 return fmt.Sprintf("%8d\t%s%s", r.N, ns, mb)
  /prebuilts/go/linux-x86/src/testing/
benchmark.go 111 // If this is called, the benchmark will report ns/op and MB/s.
325 mb := ""
327 mb = fmt.Sprintf("\t%7.2f MB/s", mbs)
340 return fmt.Sprintf("%8d\t%s%s", r.N, ns, mb)
  /external/v8/src/regexp/
jsregexp.h 160 static const size_t kRegExpExecutableMemoryLimit = 16 * MB;
161 static const size_t kRegExpCompiledLimit = 1 * MB;
    [all...]
  /hardware/intel/img/psb_video/src/
vsp_VPP.c 47 #define MB (KB * KB)
49 #define VSP_INTERMEDIATE_BUF_SIZE (29*MB)
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
stack_test.go 16 // The test consumed up to 500MB in the past.
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Core.cpp     [all...]
  /prebuilts/go/darwin-x86/src/runtime/pprof/
pprof.go 599 // all the goroutines. Start with 1 MB and try a few times, doubling each time.
600 // Give up and use a truncated trace if 64 MB is not enough.
609 // Filled 64 MB - stop there.
  /prebuilts/go/linux-x86/src/runtime/pprof/
pprof.go 599 // all the goroutines. Start with 1 MB and try a few times, doubling each time.
600 // Give up and use a truncated trace if 64 MB is not enough.
609 // Filled 64 MB - stop there.
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 337 static bool isRunOfOnes(ConstantInt *Val, uint32_t &MB, uint32_t &ME) {
343 MB = BitWidth - ((V - 1) ^ V).countLeadingZeros();
380 uint32_t MB = 0, ME = 0;
381 if (isRunOfOnes(Mask, MB, ME)) { // begin/end bit of run, inclusive
383 APInt Mask(APInt::getLowBitsSet(BitWidth, MB-1));
    [all...]
  /external/v8/src/
d8.cc 67 const int MB = 1024 * 1024;
69 const int kMaxSerializerMemoryUsage = 1 * MB; // Arbitrary maximum for testing.
147 size_t actual_length = length > 10 * MB ? 1 : length;
152 return length > 10 * MB ? malloc(1) : malloc(length);
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/
request.go 35 defaultMaxMemory = 32 << 20 // 32 MB
    [all...]

Completed in 1688 milliseconds

1 2 3 4 5 6 7 8 91011>>