OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:byteLength
(Results
1 - 25
of
39
) sorted by null
1
2
/dalvik/dx/src/com/android/dx/cf/attrib/
AttAnnotationDefault.java
33
private final int
byteLength
;
39
* @param
byteLength
{@code >= 0;} attribute data length in the original
42
public AttAnnotationDefault(Constant value, int
byteLength
) {
50
this.
byteLength
=
byteLength
;
54
public int
byteLength
() {
56
return
byteLength
+ 6;
AttConstantValue.java
62
public int
byteLength
() {
AttDeprecated.java
34
public int
byteLength
() {
AttSignature.java
47
public int
byteLength
() {
AttSourceFile.java
47
public int
byteLength
() {
AttSynthetic.java
34
public int
byteLength
() {
BaseAnnotations.java
31
private final int
byteLength
;
38
* @param
byteLength
{@code >= 0;} attribute data length in the original
42
int
byteLength
) {
55
this.
byteLength
=
byteLength
;
59
public final int
byteLength
() {
61
return
byteLength
+ 6;
BaseLocalVariables.java
53
public final int
byteLength
() {
BaseParameterAnnotations.java
31
private final int
byteLength
;
38
* @param
byteLength
{@code >= 0;} attribute data length in the original
42
AnnotationsList parameterAnnotations, int
byteLength
) {
56
this.
byteLength
=
byteLength
;
60
public final int
byteLength
() {
62
return
byteLength
+ 6;
AttEnclosingMethod.java
55
public int
byteLength
() {
AttExceptions.java
54
public int
byteLength
() {
AttInnerClasses.java
52
public int
byteLength
() {
AttLineNumberTable.java
53
public int
byteLength
() {
RawAttribute.java
77
public int
byteLength
() {
/dalvik/dx/src/com/android/dx/cf/iface/
Attribute.java
37
public int
byteLength
();
AttributeList.java
55
public int
byteLength
();
/external/webkit/WebCore/html/canvas/
WebGLArrayBuffer.cpp
43
RefPtr<WebGLArrayBuffer> buffer = adoptRef(new WebGLArrayBuffer(other->
byteLength
()));
44
memcpy(buffer->data(), other->data(), other->
byteLength
());
61
unsigned WebGLArrayBuffer::
byteLength
() const {
WebGLBuffer.cpp
90
m_elementArrayBufferByteLength = array->
byteLength
();
99
m_arrayBufferByteLength = array->
byteLength
();
119
if (uoffset > m_elementArrayBufferByteLength || array->
byteLength
() > m_elementArrayBufferByteLength - uoffset)
122
memcpy(static_cast<unsigned char*>(m_elementArrayBuffer->data()) + offset, array->baseAddress(), array->
byteLength
());
127
return array->
byteLength
() + offset <= m_arrayBufferByteLength;
132
unsigned WebGLBuffer::
byteLength
(unsigned long target) const
WebGLByteArray.cpp
55
if ((byteOffset + (length * sizeof(signed char))) > buffer->
byteLength
())
72
unsigned WebGLByteArray::
byteLength
() const {
81
unsigned bufferLength = buffer()->
byteLength
();
WebGLFloatArray.cpp
58
if ((byteOffset + (length * sizeof(float))) > buffer->
byteLength
())
74
unsigned WebGLFloatArray::
byteLength
() const {
83
unsigned bufferLength = buffer()->
byteLength
();
WebGLIntArray.cpp
61
if ((byteOffset + (length * sizeof(int))) > buffer->
byteLength
())
78
unsigned WebGLIntArray::
byteLength
() const {
87
unsigned bufferLength = buffer()->
byteLength
();
WebGLShortArray.cpp
60
if ((byteOffset + (length * sizeof(short))) > buffer->
byteLength
())
77
unsigned WebGLShortArray::
byteLength
() const {
86
unsigned bufferLength = buffer()->
byteLength
();
WebGLUnsignedByteArray.cpp
57
if ((byteOffset + (length * sizeof(unsigned char))) > buffer->
byteLength
())
74
unsigned WebGLUnsignedByteArray::
byteLength
() const {
83
unsigned bufferLength = buffer()->
byteLength
();
WebGLUnsignedIntArray.cpp
62
if ((byteOffset + (length * sizeof(unsigned int))) > buffer->
byteLength
())
79
unsigned WebGLUnsignedIntArray::
byteLength
() const {
88
unsigned bufferLength = buffer()->
byteLength
();
WebGLUnsignedShortArray.cpp
62
if ((byteOffset + (length * sizeof(unsigned short))) > buffer->
byteLength
())
81
unsigned WebGLUnsignedShortArray::
byteLength
() const {
90
unsigned bufferLength = buffer()->
byteLength
();
Completed in 103 milliseconds
1
2