Lines Matching refs:low

25686     this.low = lowInteger | 0;
25692 this.low &= word.low;
25696 this.low ^= word.low;
25700 this.low |= word.low;
25704 this.low = this.high >>> places - 32 | 0;
25707 this.low = this.low >>> places | this.high << 32 - places;
25713 this.high = this.low << places - 32;
25714 this.low = 0;
25716 this.high = this.high << places | this.low >>> 32 - places;
25717 this.low = this.low << places;
25721 var low, high;
25724 high = this.low;
25725 low = this.high;
25727 low = this.low;
25732 this.low = low >>> places | high << 32 - places;
25733 this.high = high >>> places | low << 32 - places;
25737 this.low = ~this.low;
25740 var lowAdd = (this.low >>> 0) + (word.low >>> 0);
25747 this.low = lowAdd | 0;
25755 bytes[offset + 4] = this.low >>> 24 & 0xFF;
25756 bytes[offset + 5] = this.low >> 16 & 0xFF;
25757 bytes[offset + 6] = this.low >> 8 & 0xFF;
25758 bytes[offset + 7] = this.low & 0xFF;
25762 this.low = word.low;
26030 w[j].low = padded[i + 4] << 24 | padded[i + 5] << 16 | padded[i + 6] << 8 | padded[i + 7];
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) {
33808 this._map[low++] = dstLow++;
33813 value: function mapBfRange(low, high, dstLow) {
33816 while (low <= high) {
33817 this._map[low++] = dstLow;
33823 value: function mapBfRangeToArray(low, high, array) {
33827 while (low <= high && i < ii) {
33828 this._map[low] = array[i++];
33829 ++low;
33898 var low = 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) {
34420 var low = strToInt(obj);
34428 cMap.mapBfRange(low, high, dstLow);
34438 cMap.mapBfRangeToArray(low, high, array);
34481 var low = strToInt(obj);
34488 cMap.mapCidRange(low, high, dstLow);
34508 var low = strToInt(obj);
34516 cMap.addCodespaceRange(obj.length, low, high);