Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | IntIntHashMap: Reduce temp. ArrayList<Entry> instances in clone | Sven Gothel | 2014-08-16 | 1 | -1/+3 |
| | |||||
* | Code Clean-Up based on our Recommended Settings (jogamp-scripting ↵ | Sven Gothel | 2014-07-03 | 1 | -22/+22 |
| | | | | | | | | | | | | | | | c47bc86ae2ee268a1f38c5580d11f93d7f8d6e74) Code Clean-Up based on our Recommended Settings (jogamp-scripting c47bc86ae2ee268a1f38c5580d11f93d7f8d6e74) - Change non static accesses to static members using declaring type - Change indirect accesses to static members to direct accesses (accesses through subtypes) - Add final modifier to private fields - Add final modifier to method parameters - Add final modifier to local variables - Remove unnecessary casts - Remove unnecessary '$NON-NLS$' tags - Remove trailing white spaces on all lines | ||||
* | Add '@FixMethodOrder(MethodSorters.NAME_ASCENDING)' to all *Test* classes | Sven Gothel | 2013-08-31 | 1 | -0/+4 |
| | |||||
* | fix cross test: Test* -> *Test* ; Reduce iterations further for ARM to ↵ | Sven Gothel | 2011-07-23 | 1 | -1/+1 |
| | | | | speedup test | ||||
* | Cleanup: Platform CPU enum, MachineDescription, | Sven Gothel | 2011-07-20 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Platform: - enum CPUFamily is part of CPUType - DALVIK -> ANDROID - ARM: ARM + ARMv[567] MachineDescription - self contained - static size/alignment Config (enum) for unix32, unix64, win32, win64 and armeabi - add 'long double' - Removed MachineDescription32Bit, MachineDescription64Bit - createStatic(..) uses OS/CPU to fetch best match if not at runtime FIXES: JavaEmitter's struct-emit: Proper 32/64 struct sizes TODO: StructAccessor's mapping to <Type>Buffer w/ index os sizeof(<Type>) doesn't work, since offset may not be multiple of sizeof(<Type>)! i.e. typedef struct { int8_t bits1; // +1 - 0 // +3 (p32) int32_t id; // +4 - 4 int8_t bits2; // +1 - 8 // +3 (p32) - int64_t long0; // +8 - 12 so "longBuffer.get(<type-sized index>)" is invalid, but "byteBuffer.getLong(<byte index>)" must be done. The actual impl. doesn't matter, hence dropping the other nio type mappings is good. | ||||
* | Junit tests on ARM: Reducing some test/perf loops allowing to pass tests on ↵ | Sven Gothel | 2011-07-17 | 1 | -1/+4 |
| | | | | low performance ARM | ||||
* | Fix HastMapTests - Clone: Use unique random pairs: key,value | Sven Gothel | 2011-06-26 | 1 | -50/+13 |
| | |||||
* | Primitive HashMap: Add deep clone(); Fix containsValue() in case of Object ↵ | Sven Gothel | 2011-03-19 | 1 | -0/+210 |
values (using equals(Object)); Adding junit tests for clone(), capacity and IntObjectHashMap |