Lines Matching refs:proto
965 function addBufferPrototypeMethods(proto) {
966 proto.readBigUInt64LE = readBigUInt64LE;
967 proto.readBigUInt64BE = readBigUInt64BE;
968 proto.readBigUint64LE = readBigUInt64LE;
969 proto.readBigUint64BE = readBigUInt64BE;
970 proto.readBigInt64LE = readBigInt64LE;
971 proto.readBigInt64BE = readBigInt64BE;
972 proto.writeBigUInt64LE = writeBigUInt64LE;
973 proto.writeBigUInt64BE = writeBigUInt64BE;
974 proto.writeBigUint64LE = writeBigUInt64LE;
975 proto.writeBigUint64BE = writeBigUInt64BE;
976 proto.writeBigInt64LE = writeBigInt64LE;
977 proto.writeBigInt64BE = writeBigInt64BE;
979 proto.readUIntLE = readUIntLE;
980 proto.readUInt32LE = readUInt32LE;
981 proto.readUInt16LE = readUInt16LE;
982 proto.readUInt8 = readUInt8;
983 proto.readUIntBE = readUIntBE;
984 proto.readUInt32BE = readUInt32BE;
985 proto.readUInt16BE = readUInt16BE;
986 proto.readUintLE = readUIntLE;
987 proto.readUint32LE = readUInt32LE;
988 proto.readUint16LE = readUInt16LE;
989 proto.readUint8 = readUInt8;
990 proto.readUintBE = readUIntBE;
991 proto.readUint32BE = readUInt32BE;
992 proto.readUint16BE = readUInt16BE;
993 proto.readIntLE = readIntLE;
994 proto.readInt32LE = readInt32LE;
995 proto.readInt16LE = readInt16LE;
996 proto.readInt8 = readInt8;
997 proto.readIntBE = readIntBE;
998 proto.readInt32BE = readInt32BE;
999 proto.readInt16BE = readInt16BE;
1001 proto.writeUIntLE = writeUIntLE;
1002 proto.writeUInt32LE = writeUInt32LE;
1003 proto.writeUInt16LE = writeUInt16LE;
1004 proto.writeUInt8 = writeUInt8;
1005 proto.writeUIntBE = writeUIntBE;
1006 proto.writeUInt32BE = writeUInt32BE;
1007 proto.writeUInt16BE = writeUInt16BE;
1008 proto.writeUintLE = writeUIntLE;
1009 proto.writeUint32LE = writeUInt32LE;
1010 proto.writeUint16LE = writeUInt16LE;
1011 proto.writeUint8 = writeUInt8;
1012 proto.writeUintBE = writeUIntBE;
1013 proto.writeUint32BE = writeUInt32BE;
1014 proto.writeUint16BE = writeUInt16BE;
1015 proto.writeIntLE = writeIntLE;
1016 proto.writeInt32LE = writeInt32LE;
1017 proto.writeInt16LE = writeInt16LE;
1018 proto.writeInt8 = writeInt8;
1019 proto.writeIntBE = writeIntBE;
1020 proto.writeInt32BE = writeInt32BE;
1021 proto.writeInt16BE = writeInt16BE;
1023 proto.readFloatLE = bigEndian ? readFloatBackwards : readFloatForwards;
1024 proto.readFloatBE = bigEndian ? readFloatForwards : readFloatBackwards;
1025 proto.readDoubleLE = bigEndian ? readDoubleBackwards : readDoubleForwards;
1026 proto.readDoubleBE = bigEndian ? readDoubleForwards : readDoubleBackwards;
1027 proto.writeFloatLE = bigEndian ? writeFloatBackwards : writeFloatForwards;
1028 proto.writeFloatBE = bigEndian ? writeFloatForwards : writeFloatBackwards;
1029 proto.writeDoubleLE = bigEndian ? writeDoubleBackwards : writeDoubleForwards;
1030 proto.writeDoubleBE = bigEndian ? writeDoubleForwards : writeDoubleBackwards;
1032 proto.asciiSlice = asciiSlice;
1033 proto.base64Slice = base64Slice;
1034 proto.base64urlSlice = base64urlSlice;
1035 proto.latin1Slice = latin1Slice;
1036 proto.hexSlice = hexSlice;
1037 proto.ucs2Slice = ucs2Slice;
1038 proto.utf8Slice = utf8Slice;
1039 proto.asciiWrite = asciiWrite;
1040 proto.base64Write = base64Write;
1041 proto.base64urlWrite = base64urlWrite;
1042 proto.latin1Write = latin1Write;
1043 proto.hexWrite = hexWrite;
1044 proto.ucs2Write = ucs2Write;
1045 proto.utf8Write = utf8Write;