Home | History | Annotate | Download | only in json

Lines Matching refs:quantum

75         // holds the value of the input quantum
76 int quantum = 0;
106 // append the value to the quantum
107 quantum = (quantum << 6) | (byte) bits;
110 out[out_index++] = (byte) ((quantum & 0x00FF0000) >> 16);
111 out[out_index++] = (byte) ((quantum & 0x0000FF00) >> 8);
112 out[out_index++] = (byte) (quantum & 0x000000FF);
117 // adjust the quantum value according to the padding
118 quantum = quantum << (6*pad);
120 out[out_index++] = (byte) ((quantum & 0x00FF0000) >> 16);
122 out[out_index++] = (byte) ((quantum & 0x0000FF00) >> 8);