Home | History | Annotate | Download | only in telephony

Lines Matching refs:byte_t

111                 utf8[count] = (byte_t) c;
116 utf8[count] = (byte_t)(0xc0 | ((c >> 6) & 0x1f));
118 utf8[count+1] = (byte_t)(0x80 | (c & 0x3f));
123 utf8[count] = (byte_t)(0xc0 | ((c >> 12) & 0xf));
125 utf8[count+1] = (byte_t)(0x80 | ((c >> 6) & 0x3f));
127 utf8[count+2] = (byte_t)(0x80 | (c & 0x3f));
186 str[count] = (byte_t)(0xc0 | ((c >> 6) & 0x1f));
188 str[count+1] = (byte_t)(0x80 | (c & 0x3f));
193 str[count] = (byte_t)(0xc0 | ((c >> 12) & 0xf));
195 str[count+1] = (byte_t)(0x80 | ((c >> 6) & 0x3f));
197 str[count+2] = (byte_t)(0x80 | (c & 0x3f));
536 address->data[dlen] = (byte_t) c;
1104 gsm_rope_add_c( rope, (byte_t)ref_number ); /* reference number */
1105 gsm_rope_add_c( rope, (byte_t)pdu_count ); /* max pdu index */
1106 gsm_rope_add_c( rope, (byte_t)pdu_index+1 ); /* current pdu index */
1383 byte_t ref;
1384 byte_t max;
1385 byte_t count;