HomeSort by relevance Sort by last modified time
    Searched refs:nib (Results 1 - 5 of 5) sorted by null

  /bionic/libc/netbsd/inet/
nsap_addr.c 52 u_char c, nib; local
70 nib = xtob(c);
75 *binary++ = (nib << 4) | xtob(c);
91 int nib; local
112 nib = (u_int32_t)*binary >> 4;
113 *ascii++ = nib + (nib < 10 ? '0' : '7');
114 nib = *binary++ & 0x0f;
115 *ascii++ = nib + (nib < 10 ? '0' : '7')
    [all...]
  /development/ide/xcode/ports/
skia_mac.cp 56 // Create a Nib reference passing the name of the nib file (without the .nib extension)
61 // Once the nib reference is created, set the menu bar. "MainMenu" is the name of the menu bar
62 // object. This name is set in InterfaceBuilder when the nib is created.
67 // InterfaceBuilder when the nib is created.
71 // We don't need the nib reference anymore.
  /external/skia/xcode/ports/
skia_mac.cp 57 // Create a Nib reference passing the name of the nib file (without the .nib extension)
62 // Once the nib reference is created, set the menu bar. "MainMenu" is the name of the menu bar
63 // object. This name is set in InterfaceBuilder when the nib is created.
68 // InterfaceBuilder when the nib is created.
72 // We don't need the nib reference anymore.
  /external/freetype/src/cff/
cffparse.c 137 FT_UInt nib; local
174 nib = ( p[0] >> phase ) & 0xF;
177 if ( nib == 0xE )
179 else if ( nib > 9 )
187 else if ( nib || number )
190 number = number * 10 + nib;
196 if ( nib == 0xa )
211 nib = ( p[0] >> phase ) & 0xF;
213 if ( nib >= 10 )
217 if ( !nib && !number
    [all...]
  /external/skia/include/core/
SkColorPriv.h 412 static inline U8CPU SkReplicateNibble(unsigned nib) {
413 SkASSERT(nib <= 0xF);
414 return (nib << 4) | nib;

Completed in 169 milliseconds