Lines Matching refs:high

25685     this.high = highInteger | 0;
25691 this.high &= word.high;
25695 this.high ^= word.high;
25699 this.high |= word.high;
25704 this.low = this.high >>> places - 32 | 0;
25705 this.high = 0;
25707 this.low = this.low >>> places | this.high << 32 - places;
25708 this.high = this.high >>> places | 0;
25713 this.high = this.low << places - 32;
25716 this.high = this.high << places | this.low >>> 32 - places;
25721 var low, high;
25724 high = this.low;
25725 low = this.high;
25728 high = this.high;
25732 this.low = low >>> places | high << 32 - places;
25733 this.high = high >>> places | low << 32 - places;
25736 this.high = ~this.high;
25741 var highAdd = (this.high >>> 0) + (word.high >>> 0);
25748 this.high = highAdd | 0;
25751 bytes[offset] = this.high >>> 24 & 0xFF;
25752 bytes[offset + 1] = this.high >> 16 & 0xFF;
25753 bytes[offset + 2] = this.high >> 8 & 0xFF;
25754 bytes[offset + 3] = this.high & 0xFF;
25761 this.high = word.high;
26029 w[j].high = padded[i] << 24 | padded[i + 1] << 16 | padded[i + 2] << 8 | padded[i + 3];
33800 value: function addCodespaceRange(n, low, high) {
33801 this.codespaceRanges[n - 1].push(low, high);
33806 value: function mapCidRange(low, high, dstLow) {
33807 while (low <= high) {
33813 value: function mapBfRange(low, high, dstLow) {
33816 while (low <= high) {
33823 value: function mapBfRangeToArray(low, high, array) {
33827 while (low <= high && i < ii) {
33899 var high = codespaceRange[k++];
33901 if (c >= low && c <= high) {
33963 value: function mapCidRange(low, high, dstLow) {
33968 value: function mapBfRange(low, high, dstLow) {
33973 value: function mapBfRangeToArray(low, high, array) {
34423 var high = strToInt(obj);
34428 cMap.mapBfRange(low, high, dstLow);
34438 cMap.mapBfRangeToArray(low, high, array);
34484 var high = strToInt(obj);
34488 cMap.mapCidRange(low, high, dstLow);
34515 var high = strToInt(obj);
34516 cMap.addCodespaceRange(obj.length, low, high);