Searched refs:tupel (Results 1 - 4 of 4) sorted by relevance

/haiku/src/add-ons/kernel/partitioning_systems/amiga/
H A Damiga_rdb.cpp60 static unsigned char tupel[5]; local
62 tupel[0] = 0xff & (id >> 24);
63 tupel[1] = 0xff & (id >> 16);
64 tupel[2] = 0xff & (id >> 8);
65 tupel[3] = 0xff & (id);
66 tupel[4] = 0;
68 if (tupel[i] < ' ' || tupel[i] > 128)
69 tupel[i] = '.';
72 return (char *)tupel;
[all...]
/haiku/src/bin/bfs_tools/lib/
H A Ddump.cpp24 static unsigned char tupel[5]; local
26 tupel[0] = 0xff & (id >> 24);
27 tupel[1] = 0xff & (id >> 16);
28 tupel[2] = 0xff & (id >> 8);
29 tupel[3] = 0xff & (id);
30 tupel[4] = 0;
32 if (tupel[i] < ' ' || tupel[i] > 128)
33 tupel[i] = '.';
35 return (char *)tupel;
[all...]
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DDebug.cpp19 static unsigned char tupel[5]; local
21 tupel[0] = 0xff & (id >> 24);
22 tupel[1] = 0xff & (id >> 16);
23 tupel[2] = 0xff & (id >> 8);
24 tupel[3] = 0xff & (id);
25 tupel[4] = 0;
27 if (tupel[i] < ' ' || tupel[i] > 128)
28 tupel[i] = '.';
31 return (char*)tupel;
[all...]
/haiku/src/bin/
H A Dtranslate.cpp104 char tupel[5]; local
107 tupel[i] = (value >> (24 - i * 8)) & 0xff;
108 if (!isprint(tupel[i]))
109 tupel[i] = '.';
111 tupel[4] = '\0';
113 printf(format, tupel);

Completed in 52 milliseconds