Searched defs:wordSize (Results 1 - 5 of 5) sorted by relevance
/openjdk7/jdk/src/share/classes/javax/crypto/spec/ |
H A D | RC5ParameterSpec.java | 52 private int wordSize; // the word size in bits field in class:RC5ParameterSpec 60 * @param wordSize the word size in bits. 62 public RC5ParameterSpec(int version, int rounds, int wordSize) { argument 65 this.wordSize = wordSize; 74 * <code>iv[0]</code> and <code>iv[2*(wordSize/8)-1]</code> inclusive. 78 * @param wordSize the word size in bits. 79 * @param iv the buffer with the IV. The first <code>2*(wordSize/8) 83 * <code>null</code> or <code>(iv.length < 2 * (wordSize / 8))</code> 85 public RC5ParameterSpec(int version, int rounds, int wordSize, byt argument 112 RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv, int offset) argument [all...] |
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/ |
H A D | MemRegion.java | 68 public MemRegion(Address start, long wordSize) { argument 70 setWordSize(wordSize); 153 public void setWordSize(long wordSize) { argument 154 byteSize = VM.getVM().getAddressSize() * wordSize; 169 public long wordSize() { method in class:MemRegion
|
/openjdk7/hotspot/src/cpu/x86/vm/ |
H A D | interpreterRT_x86_32.cpp | 61 __ movl(Address(to(), to_offset * wordSize), temp()); local 72 __ movptr(Address(to(), to_offset * wordSize), temp()); local
|
H A D | assembler_x86.cpp | 5229 movq(r14, Address(rsp, wordSize)); 5230 movq(r13, Address(rsp, 2 * wordSize)); 5231 movq(r12, Address(rsp, 3 * wordSize)); 5232 movq(r11, Address(rsp, 4 * wordSize)); 5233 movq(r10, Address(rsp, 5 * wordSize)); 5234 movq(r9, Address(rsp, 6 * wordSize)); 5235 movq(r8, Address(rsp, 7 * wordSize)); 5236 movq(rdi, Address(rsp, 8 * wordSize)); 5237 movq(rsi, Address(rsp, 9 * wordSize)); 5238 movq(rbp, Address(rsp, 10 * wordSize)); 9353 assert(itableMethodEntry::size() * wordSize == wordSize, "adjust the scaling in the code below"); local 9399 assert(vtableEntry::size() * wordSize == wordSize, "else adjust the scaling in the code below"); local [all...] |
/openjdk7/hotspot/src/share/vm/utilities/ |
H A D | globalDefinitions.hpp | 83 const int wordSize = sizeof(char*); variable
|
Completed in 1044 milliseconds