Searched refs:atPtr (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLETableReference.h167 size_t ptrToOffset(const void *atPtr, LEErrorCode &success) const { argument
168 if(atPtr==NULL) return 0;
170 if((atPtr < fStart) ||
171 (hasBounds() && (atPtr > fStart+fLength))) {
172 LE_DEBUG_TR3("ptrToOffset args out of range: %p", atPtr, 0);
176 return ((const le_uint8*)atPtr)-fStart;
378 * @param atPtr location of reference - if NULL, will be at offset zero (i.e. downcast of parent). Otherwise must be a pointer within parent's bounds.
380 LEReferenceTo(const LETableReference &parent, LEErrorCode &success, const void* atPtr) argument
381 : LETableReference(parent, parent.ptrToOffset(atPtr, success), LE_UINTPTR_MAX, success) {
388 LEReferenceTo(const LETableReference &parent, LEErrorCode &success, const void* atPtr, size_ argument
[all...]

Completed in 179 milliseconds