HomeSort by relevance Sort by last modified time
    Searched full:lengthbyte (Results 1 - 2 of 2) sorted by null

  /external/icu4c/common/
unames.cpp 542 uint8_t lengthByte;
546 lengthByte=*s++;
548 /* read even nibble - MSBs of lengthByte */
551 length=(uint16_t)(((length&0x3)<<4|lengthByte>>4)+12);
552 lengthByte&=0xf;
553 } else if((lengthByte /* &0xf0 */)>=0xc0) {
555 length=(uint16_t)((lengthByte&0x3f)+12);
558 length=(uint16_t)(lengthByte>>4);
559 lengthByte&=0xf;
568 /* read odd nibble - LSBs of lengthByte */
    [all...]
  /external/mdnsresponder/mDNSCore/
DNSCommon.c 487 mDNSu8 *lengthbyte = ptr++; // Record where the length is going to go local
490 *lengthbyte = (mDNSu8)(ptr - lengthbyte - 1); // Fill in the length byte
510 mDNSu8 *lengthbyte = ptr++; // Record where the length is going to go local
530 if (ptr - lengthbyte - 1 > MAX_DOMAIN_LABEL) // If illegal label, abort
532 *lengthbyte = (mDNSu8)(ptr - lengthbyte - 1); // Fill in the length byte
    [all...]

Completed in 864 milliseconds