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/valgrind/main/coregrind/m_gdbserver/
remote-utils.c 517 /* Convert number NIB to a hex digit. */
520 int tohex (int nib)
522 if (nib < 10)
523 return '0' + nib;
525 return 'a' + nib - 10;
910 int nib; local
914 nib = ((ch & 0xf0) >> 4) & 0x0f;
915 *to++ = tohex (nib);
916 nib = ch & 0x0f;
917 *to++ = tohex (nib);
952 int nib; local
    [all...]
  /external/freetype/src/cff/
cffparse.c 135 FT_UInt nib; local
172 nib = ( p[0] >> phase ) & 0xF;
175 if ( nib == 0xE )
177 else if ( nib > 9 )
185 else if ( nib || number )
188 number = number * 10 + nib;
194 if ( nib == 0xa )
209 nib = ( p[0] >> phase ) & 0xF;
211 if ( nib >= 10 )
215 if ( !nib && !number
    [all...]
  /external/skia/include/core/
SkColorPriv.h 481 static inline U8CPU SkReplicateNibble(unsigned nib) {
482 SkASSERT(nib <= 0xF);
483 return (nib << 4) | nib;

Completed in 283 milliseconds