Home | History | Annotate | Download | only in mips

Lines Matching defs:keys

2929     const int *keys;
2938 * int keys[size] keys, sorted low-to-high; 32-bit aligned
2947 /* The keys are guaranteed to be aligned on a 32-bit boundary;
2950 keys = (const int*) &switchData[2];
2951 assert(((u4)keys & 0x3) == 0);
2956 entries = keys + size;
2960 * Run through the list of keys, which are guaranteed to
2968 int k = keys[i];
2975 int k = (unsigned int)keys[i] >> 16 | keys[i] << 16;