Home | History | Annotate | Download | only in Modules

Lines Matching refs:native

79 /* We can't support q and Q in native mode unless the compiler does;
178 /* Same, but handling native long long. */
201 /* Same, but handling native unsigned long long. */
364 [bln] distiguishes among big-endian, little-endian and native.
369 /* Native mode routines. ****************************************************/
1201 but potentially different from native rep -- reuse bx_bool funcs. */
1219 case '=': { /* Host byte order -- different from native in alignment! */
2261 @: native order, size & alignment (default)\n\
2262 =: native order, std. size & alignment\n\
2275 Special cases (only available in native format):\n\
2278 Special case (not in native mode unless 'long long' in platform C):\n\
2315 const formatdef *native = native_table;
2322 /* Scan through the native table, find a matching
2324 native implementations whenever possible
2326 while (native->format != '\0' && other->format != '\0') {
2329 if (ptr->format == native->format) {
2336 if (ptr->size != native->size)
2342 ptr->pack = native->pack;
2343 ptr->unpack = native->unpack;
2348 native++;