Home | History | Annotate | Download | only in obex

Lines Matching refs:upper

898             int upper = b[2 * i];
900 if (upper < 0) {
901 upper += 256;
906 // If upper and lower both equal 0, it should be the end of string.
908 if (upper == 0 && lower == 0) {
912 c[i] = (char)((upper << 8) | lower);