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

  /device/linaro/bootloader/edk2/StdLib/LibC/Main/Arm/
fp_lib.h 228 #define typeWidth (sizeof(rep_t)*CHAR_BIT)
229 #define exponentBits (typeWidth - significandBits - 1)
260 *hi = *hi << count | *lo >> (typeWidth - count);
265 if (count < typeWidth) {
266 const bool sticky = *lo << (typeWidth - count);
267 *lo = *hi << (typeWidth - count) | *lo >> count | sticky;
270 else if (count < 2*typeWidth) {
271 const bool sticky = *hi << (2*typeWidth - count) | *lo;
272 *lo = *hi >> (count - typeWidth) | sticky;
  /external/compiler-rt/lib/builtins/
fp_lib.h 216 #define typeWidth (sizeof(rep_t)*CHAR_BIT)
217 #define exponentBits (typeWidth - significandBits - 1)
248 *hi = *hi << count | *lo >> (typeWidth - count);
253 if (count < typeWidth) {
254 const bool sticky = *lo << (typeWidth - count);
255 *lo = *hi << (typeWidth - count) | *lo >> count | sticky;
258 else if (count < 2*typeWidth) {
259 const bool sticky = *hi << (2*typeWidth - count) | *lo;
260 *lo = *hi >> (count - typeWidth) | sticky;
floatsisf.c 50 rep_t round = (rep_t)a << (typeWidth - shift);
floatunsisf.c 42 rep_t round = (rep_t)a << (typeWidth - shift);
  /prebuilts/jdk/jdk8/darwin-x86/jre/lib/ext/
nashorn.jar 
  /prebuilts/jdk/jdk8/linux-x86/jre/lib/ext/
nashorn.jar 

Completed in 97 milliseconds