Lines Matching refs:EcmaRuntimeCallInfo

61     static JSTaggedValue DataViewConstructor(EcmaRuntimeCallInfo *argv);
63 static JSTaggedValue GetBuffer(EcmaRuntimeCallInfo *argv);
65 static JSTaggedValue GetByteLength(EcmaRuntimeCallInfo *argv);
67 static JSTaggedValue GetOffset(EcmaRuntimeCallInfo *argv);
69 static JSTaggedValue GetFloat32(EcmaRuntimeCallInfo *argv);
71 static JSTaggedValue GetFloat64(EcmaRuntimeCallInfo *argv);
73 static JSTaggedValue GetInt8(EcmaRuntimeCallInfo *argv);
75 static JSTaggedValue GetInt16(EcmaRuntimeCallInfo *argv);
77 static JSTaggedValue GetInt32(EcmaRuntimeCallInfo *argv);
79 static JSTaggedValue GetUint8(EcmaRuntimeCallInfo *argv);
81 static JSTaggedValue GetUint16(EcmaRuntimeCallInfo *argv);
83 static JSTaggedValue GetUint32(EcmaRuntimeCallInfo *argv);
85 static JSTaggedValue GetBigInt64(EcmaRuntimeCallInfo *argv);
87 static JSTaggedValue GetBigUint64(EcmaRuntimeCallInfo *argv);
89 static JSTaggedValue SetFloat32(EcmaRuntimeCallInfo *argv);
91 static JSTaggedValue SetFloat64(EcmaRuntimeCallInfo *argv);
93 static JSTaggedValue SetInt8(EcmaRuntimeCallInfo *argv);
95 static JSTaggedValue SetInt16(EcmaRuntimeCallInfo *argv);
97 static JSTaggedValue SetInt32(EcmaRuntimeCallInfo *argv);
99 static JSTaggedValue SetUint8(EcmaRuntimeCallInfo *argv);
101 static JSTaggedValue SetUint16(EcmaRuntimeCallInfo *argv);
103 static JSTaggedValue SetUint32(EcmaRuntimeCallInfo *argv);
105 static JSTaggedValue SetBigInt64(EcmaRuntimeCallInfo *argv);
107 static JSTaggedValue SetBigUint64(EcmaRuntimeCallInfo *argv);
146 static JSTaggedValue GetTypedValue(EcmaRuntimeCallInfo *argv, DataViewType type);
147 static JSTaggedValue SetTypedValue(EcmaRuntimeCallInfo *argv, DataViewType type);