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

/external/webkit/WebCore/html/canvas/
H A DWebGLByteArray.cpp79 unsigned startByte = m_byteOffset + offset * sizeof(signed char); local
80 unsigned limitByte = startByte + length * sizeof(signed char);
82 if (startByte >= bufferLength || limitByte > bufferLength)
84 return create(buffer(), startByte, length);
H A DWebGLFloatArray.cpp81 unsigned startByte = m_byteOffset + offset * sizeof(float); local
82 unsigned limitByte = startByte + length * sizeof(float);
84 if (startByte >= bufferLength || limitByte > bufferLength)
86 return create(buffer(), startByte, length);
H A DWebGLIntArray.cpp85 unsigned startByte = m_byteOffset + offset * sizeof(int); local
86 unsigned limitByte = startByte + length * sizeof(int);
88 if (startByte >= bufferLength || limitByte > bufferLength)
90 return create(buffer(), startByte, length);
H A DWebGLShortArray.cpp84 unsigned startByte = m_byteOffset + offset * sizeof(short); local
85 unsigned limitByte = startByte + length * sizeof(short);
87 if (startByte >= bufferLength || limitByte > bufferLength)
89 return create(buffer(), startByte, length);
H A DWebGLUnsignedByteArray.cpp81 unsigned startByte = m_byteOffset + offset * sizeof(unsigned char); local
82 unsigned limitByte = startByte + length * sizeof(unsigned char);
84 if (startByte >= bufferLength || limitByte > bufferLength)
86 return create(buffer(), startByte, length);
H A DWebGLUnsignedIntArray.cpp86 unsigned startByte = m_byteOffset + offset * sizeof(unsigned int); local
87 unsigned limitByte = startByte + length * sizeof(unsigned int);
89 if (startByte >= bufferLength || limitByte > bufferLength)
91 return create(buffer(), startByte, length);
H A DWebGLUnsignedShortArray.cpp88 unsigned startByte = m_byteOffset + offset * sizeof(unsigned short); local
89 unsigned limitByte = startByte + length * sizeof(unsigned short);
91 if (startByte >= bufferLength || limitByte > bufferLength)
93 return create(buffer(), startByte, length);

Completed in 30 milliseconds