Lines Matching defs:base
695 bytes_t base;
704 free( pdu->base );
705 pdu->base = NULL;
1219 p->base = gsm_rope_done_acquire( rope, &size );
1220 if (p->base == NULL)
1223 p->end = p->base + size;
1224 p->tpdu = p->base + 1;
1333 p->base = malloc( (hexlen+1)/2 );
1334 if (p->base == NULL) {
1340 if ( gsm_hex_to_bytes( (cbytes_t)hex, hexlen, p->base ) < 0 )
1343 p->end = p->base + (hexlen+1)/2;
1345 data = p->base;
1355 free(p->base);
1363 int result = (pdu->end - pdu->base)*2;
1370 gsm_hex_from_byte( &hex[nn*2], pdu->base[nn] );