Searched refs:Size (Results 1 - 25 of 57) sorted by relevance

123

/openjdk10/hotspot/src/share/vm/shark/
H A DsharkMemoryManager.cpp74 uint8_t* SharkMemoryManager::allocateGlobal(uintptr_t Size, argument
76 return mm()->allocateGlobal(Size, Alignment);
87 unsigned char *SharkMemoryManager::allocateSpace(intptr_t Size, argument
89 return mm()->allocateSpace(Size, Alignment);
94 uint8_t* SharkMemoryManager::allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID) { argument
95 return mm()->allocateCodeSection(Size, Alignment, SectionID);
98 uint8_t* SharkMemoryManager::allocateDataSection(uintptr_t Size, unsigned Alignment, unsigned SectionID) { argument
99 return mm()->allocateDataSection(Size, Alignment, SectionID);
120 uint8_t *SharkMemoryManager::allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName) { argument
121 return mm()->allocateCodeSection(Size, Alignmen
124 allocateDataSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName, bool IsReadOnly) argument
[all...]
H A DsharkMemoryManager.hpp79 unsigned char *allocateSpace(intptr_t Size,
83 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID);
84 uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment, unsigned SectionID);
93 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, llvm::StringRef SectionName);
94 uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, llvm::StringRef SectionName, bool IsReadOnly);
/openjdk10/jdk/src/java.desktop/macosx/classes/com/apple/laf/
H A DAquaUtilControlSize.java49 void applySizeFor(final JComponent c, final Size size);
67 private static JRSUIConstants.Size getSizeFromString(final String name) {
68 if ("regular".equalsIgnoreCase(name)) return Size.REGULAR;
69 if ("small".equalsIgnoreCase(name)) return Size.SMALL;
70 if ("mini".equalsIgnoreCase(name)) return Size.MINI;
71 if ("large".equalsIgnoreCase(name)) return Size.LARGE;
75 private static Size getDefaultSize() {
77 final JRSUIConstants.Size size = getSizeFromString(sizeProperty);
79 return JRSUIConstants.Size.REGULAR;
82 protected static final JRSUIConstants.Size defaultSiz
[all...]
H A DAquaBorder.java47 this.sizeVariant = sizeDescriptor.get(Size.REGULAR);
66 protected void setSize(final Size size) {
76 protected AquaBorder deriveBorderForSize(final Size size) {
H A DAquaTextFieldBorder.java48 painter.state.set(Size.LARGE);
59 protected void setSize(final Size size) {
61 painter.state.set(Size.LARGE);
H A DAquaButtonBorder.java212 final Size size = AquaUtilControlSize.getUserSizeFrom(b);
229 final Size size = AquaUtilControlSize.getUserSizeFrom(b);
237 if (size == Size.REGULAR) { y += 1; height -= 1; }
238 if (size == Size.MINI) { height -= 1; x += 4; width -= 8; }
244 protected Widget getStyleForSize(final AbstractButton b, final Size size, final int width, final int height) {
245 if (size != null && size != Size.REGULAR) {
H A DAquaButtonLabeledUI.java64 public void applySizeFor(final JComponent c, final Size newSize) {
70 final Size componentSize = AquaUtilControlSize.getUserSizeFrom(c);
71 if (componentSize == Size.REGULAR) return regularIcon.get();
72 if (componentSize == Size.SMALL) return smallIcon.get();
73 if (componentSize == Size.MINI) return miniIcon.get();
H A DAquaIcon.java35 import apple.laf.JRSUIConstants.Size;
106 final Size size = c instanceof JComponent ? AquaUtilControlSize.getUserSizeFrom((JComponent)c) : Size.REGULAR;
H A DAquaSliderUI.java125 public void applySizeFor(final JComponent c, final Size size) {
237 final Size size = AquaUtilControlSize.getUserSizeFrom(slider);
239 if (size == Size.REGULAR) {
243 if (size == Size.SMALL) {
247 if (size == Size.MINI) {
H A DAquaProgressBarUI.java61 protected Size sizeVariant = Size.REGULAR;
359 public void applySizeFor(final JComponent c, final Size size) {
360 painter.state.set(sizeVariant = size == Size.MINI ? Size.SMALL : sizeVariant); // CUI doesn't support mini progress bars right now
H A DAquaComboBoxButton.java113 final Size size = AquaUtilControlSize.getUserSizeFrom(comboBox);
114 painter.state.set(size == null ? Size.REGULAR : size);
/openjdk10/jdk/test/sun/tools/jstat/
H A DprintCompilationOutput1.awk6 # Compiled Size Type Method
13 /^Compiled Size Type Method$/ {
/openjdk10/langtools/test/tools/javac/lambda/methodReference/
H A DIntersectionTypeReceiverTest.java42 String output = valueOfKey(Size.class, LocalDate.now()).toString();
47 enum Size implements Supplier<LocalDate> { enum in class:IntersectionTypeReceiverTest
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/opto/
H A DNode_Array.java57 public int Size() { method in class:Node_Array
/openjdk10/hotspot/src/share/vm/opto/
H A Dregmask.hpp191 bool is_misaligned_pair() const { return Size()==2 && !is_aligned_pairs(); }
222 bool is_misaligned_set(int size) const { return (int)Size()==size && !is_aligned_sets(size);}
291 uint Size() const;
/openjdk10/hotspot/src/share/vm/adlc/
H A Ddict2.hpp48 int _size; // Size (# of slots) in hash table
70 int Size(void) const { return _cnt; } function in class:Dict
H A Dforms.hpp105 int Size(void) const;
580 int Size(void) const;
H A Dforms.cpp314 int FormDict::Size(void) const { function in class:FormDict
315 return _form.Size();
/openjdk10/hotspot/src/share/vm/libadt/
H A Ddict.hpp50 uint _size; // Size (# of slots) in hash table
71 uint32_t Size(void) const { return _cnt; } function in class:Dict
H A Dset.hpp55 // Size O(N) O(1) O(1)
74 // Size: Returns the number of members of a Set
175 virtual uint Size(void) const=0;
H A Dvectset.hpp41 // O(max_element) - Create, Clear, Size, Copy, Union, Intersect, Difference,
51 uint size; // Size of data IN LONGWORDS (32bits)
100 uint Size(void) const; // Number of elements in the Set.
/openjdk10/jdk/test/java/nio/channels/FileChannel/
H A DSize.java27 * @run main/othervm Size
41 public class Size { class
56 throw new RuntimeException("Size failed in testSmallFile. "
75 throw new RuntimeException("Size failed in testLargeFile. "
/openjdk10/jdk/src/java.desktop/macosx/classes/apple/laf/
H A DJRSUIConstants.java159 public static class Size extends Property { class in class:JRSUIConstants
165 Size(final byte value) { method in class:JRSUIConstants.Size
170 public static final Size MINI = new Size(_mini);
172 public static final Size SMALL = new Size(_small);
174 public static final Size REGULAR = new Size(_regular);
176 public static final Size LARGE = new Size(_larg
[all...]
/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/harfbuzz/
H A Dhb-open-type-private.hh80 * Size checking
626 template <typename Type, unsigned int Size>
631 inline bool operator == (const IntType<Type,Size> &o) const { return (Type) v == (Type) o.v; }
632 inline bool operator != (const IntType<Type,Size> &o) const { return !(*this == o); }
633 static inline int cmp (const IntType<Type,Size> *a, const IntType<Type,Size> *b) { return b->cmp (*a); }
648 BEInt<Type, Size> v;
650 DEFINE_SIZE_STATIC (Size);
/openjdk10/jdk/src/java.desktop/share/native/liblcms/
H A Dcmsio0.c169 cmsUInt32Number Size; // Size of allocated memory member in struct:__anon1018
182 if (ResData -> Pointer + len > ResData -> Size){
184 len = (ResData -> Size - ResData -> Pointer);
203 if (offset > ResData ->Size) {
232 if (ResData->Pointer + size > ResData->Size) {
233 size = ResData ->Size - ResData->Pointer;
300 fm ->Size = size;
311 fm ->Size = size;
1880 // Get Size an
1896 cmsWriteRawTag(cmsHPROFILE hProfile, cmsTagSignature sig, const void* data, cmsUInt32Number Size) argument
[all...]

Completed in 150 milliseconds

123