Changeset 19814
- Timestamp:
- 11/25/15 14:35:14 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk-jpl/src/m/io/fileptr.js ΒΆ
r19810 r19814 98 98 if(format == 'int'){ 99 99 if(size==1){ 100 value=this.view.get Uint32(this.ptr,true);100 value=this.view.getInt32(this.ptr,true); 101 101 this.ptr+=4; 102 102 } 103 103 else{ 104 value = new Uint32Array(size);104 value = new Int32Array(size); 105 105 for(var i=0;i<size;i++){ 106 value[i]=this.view.get Uint32(this.ptr,true);106 value[i]=this.view.getInt32(this.ptr,true); 107 107 this.ptr+=4; 108 108 }
Note:
See TracChangeset
for help on using the changeset viewer.