OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:lengthbyte
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/icu/source/common/
unames.c
540
uint8_t
lengthByte
;
544
lengthByte
=*s++;
546
/* read even nibble - MSBs of
lengthByte
*/
549
length=(uint16_t)(((length&0x3)<<4|
lengthByte
>>4)+12);
550
lengthByte
&=0xf;
551
} else if((
lengthByte
/* &0xf0 */)>=0xc0) {
553
length=(uint16_t)((
lengthByte
&0x3f)+12);
556
length=(uint16_t)(
lengthByte
>>4);
557
lengthByte
&=0xf;
566
/* read odd nibble - LSBs of
lengthByte
*/
[
all
...]
/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 631 milliseconds