HomeSort by relevance Sort by last modified time
    Searched full:minsize (Results 151 - 175 of 241) sorted by null

1 2 3 4 5 67 8 910

  /external/llvm/lib/ExecutionEngine/JIT/
JITMemoryManager.cpp 390 FreeRangeHeader *allocateNewCodeSlab(size_t MinSize) {
391 // If the user needs at least MinSize free memory, then we account for
394 size_t PaddedMin = MinSize + 2 * sizeof(MemoryRangeHeader);
417 assert(NewBlock->BlockSize - sizeof(MemoryRangeHeader) >= MinSize &&
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_sf_state.c 275 ctx->Point.MinSize,
gen6_sf_state.c 243 point_size = CLAMP(ctx->Point.Size, ctx->Point.MinSize, ctx->Point.MaxSize);
  /external/chromium_org/chrome/browser/ui/cocoa/
browser_window_controller.mm 270 NSSize minSize = [self isTabbedWindow] ?
272 [[self window] setMinSize:minSize];
477 NSSize minSize = [[self window] minSize];
478 if (bounds.width() < minSize.width)
479 checkedBounds.set_width(minSize.width);
480 if (bounds.height() < minSize.height)
481 checkedBounds.set_height(minSize.height);
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkPictureFlat.h 603 SkChunkFlatController(size_t minSize)
604 : fHeap(minSize)
  /external/clang/include/clang/Basic/
Attr.td 382 def MinSize : InheritableAttr {
383 let Spellings = [GNU<"minsize">];
  /external/dnsmasq/src/
rfc2131.c 95 static unsigned char *option_find(struct dhcp_packet *mess, size_t size, int opt_type, int minsize);
96 static unsigned char *option_find1(unsigned char *p, unsigned char *end, int opt, int minsize);
    [all...]
  /external/skia/src/core/
SkPictureFlat.h 603 SkChunkFlatController(size_t minSize)
604 : fHeap(minSize)
  /packages/apps/Settings/src/com/android/settings/widget/
ChartSweepView.java 239 public void setLabelMinSize(int minSize) {
240 mLabelMinSize = minSize;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderThemeChromiumMac.mm 678 void RenderThemeChromiumMac::setControlSize(NSCell* cell, const IntSize* sizes, const IntSize& minSize, float zoomLevel)
681 if (minSize.width() >= static_cast<int>(sizes[NSRegularControlSize].width() * zoomLevel) &&
682 minSize.height() >= static_cast<int>(sizes[NSRegularControlSize].height() * zoomLevel))
684 else if (minSize.width() >= static_cast<int>(sizes[NSSmallControlSize].width() * zoomLevel) &&
685 minSize.height() >= static_cast<int>(sizes[NSSmallControlSize].height() * zoomLevel))
    [all...]
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
ByteString.java 845 private void flushFullBuffer(int minSize) {
849 // the new buffer should also at least be >= minSize and
852 Math.max(minSize, flushedBuffersTotalBytes >>> 1));
    [all...]
  /external/clang/lib/CodeGen/
CGCleanup.cpp 244 unsigned MinSize = cast<EHCleanupScope>(*it).getFixupDepth();
245 assert(BranchFixups.size() >= MinSize && "fixup stack out of order");
247 while (BranchFixups.size() > MinSize &&
    [all...]
  /external/llvm/lib/IR/
Attributes.cpp 173 if (hasAttribute(Attribute::MinSize))
174 return "minsize";
375 case Attribute::MinSize: return 1ULL << 33;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameView.h 238 void enableAutoSizeMode(bool enable, const IntSize& minSize, const IntSize& maxSize);
FrameView.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
CallingConvLower.h 355 int MinSize, int MinAlign, ISD::ArgFlagsTy ArgFlags);
  /external/mdnsresponder/mDNSCore/
DNSCommon.h 246 extern const mDNSu8 *LocateOptRR(const DNSMessage *const msg, const mDNSu8 *const end, int minsize);
  /frameworks/base/core/java/android/widget/
NumberPicker.java     [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/common/
xmlconfig.c 701 GLuint minSize = (nConfigOptions*3 + 1) / 2;
703 for (size = 1, log2size = 0; size < minSize; size <<= 1, ++log2size);
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/common/
xmlconfig.c 701 GLuint minSize = (nConfigOptions*3 + 1) / 2;
703 for (size = 1, log2size = 0; size < minSize; size <<= 1, ++log2size);
    [all...]
  /frameworks/base/core/jni/android/opengl/
util.cpp 159 ArrayHelper(JNIEnv* env, JArray ref, jint offset, jint minSize) {
163 mMinSize = minSize;
  /external/chromium/chrome/browser/ui/cocoa/
browser_window_controller.mm 267 NSSize minSize = [[self window] minSize];
270 if (windowRect.width() < minSize.width)
271 windowRect.set_width(minSize.width);
272 if (windowRect.height() < minSize.height)
273 windowRect.set_height(minSize.height);
    [all...]
  /external/chromium_org/third_party/jemalloc/chromium/
jemalloc.c     [all...]
  /external/chromium_org/third_party/jemalloc/vendor/
jemalloc.c     [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/common/
meta.c 209 GLsizei MinSize; /**< Min texture size to allocate */
    [all...]

Completed in 581 milliseconds

1 2 3 4 5 67 8 910