Searched refs:cutoff (Results 1 - 13 of 13) sorted by relevance
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Locale/ |
H A D | _wcstol.h | 63 __wINT acc, cutoff; local 72 (void)&acc; (void)&cutoff; 110 cutoff = neg ? __wINT_MIN : __wINT_MAX; 111 cutlim = (int)(cutoff % base); 112 cutoff /= base; 116 cutoff += 1; 129 if (acc < cutoff || (acc == cutoff && i > cutlim)) { 139 if (acc > cutoff || (acc == cutoff [all...] |
H A D | _wcstoul.h | 65 __wUINT acc, cutoff; local 107 cutoff = (__wUINT)DivU64x32 ((UINT64) __wUINT_MAX, (UINT32) base); 118 if (acc > cutoff || (acc == cutoff && i > cutlim)) {
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/StdLib/ |
H A D | strtoimax.c | 63 intmax_t acc, cutoff; local 72 (void) &acc; (void) &cutoff; 102 * Compute the cutoff value between legal numbers and illegal 110 * is 10, cutoff will be set to 922337203685477580 and cutlim to 119 cutoff = neg ? INTMAX_MIN : INTMAX_MAX; 120 cutlim = (int)(cutoff % base); 121 cutoff /= base; 125 cutoff += 1; 141 if (acc < cutoff || (acc == cutoff [all...] |
H A D | strtoumax.c | 72 uintmax_t acc, cutoff; local 103 cutoff = DivU64x32 ((UINT64) UINTMAX_MAX, (UINT32) base); 120 if (acc > cutoff || (acc == cutoff && c > cutlim)) {
|
/vbox/src/VBox/Devices/PC/ipxe/src/crypto/ |
H A D | entropy.c | 49 * Calculate cutoff value for the repetition count test 51 * @ret cutoff Cutoff value 53 * This is the cutoff value for the Repetition Count Test defined in 59 unsigned int cutoff; local 61 /* The cutoff formula for the repetition test is: 73 cutoff = max_repetitions; 74 if ( cutoff < max_repetitions ) 75 cutoff++; 76 linker_assert ( ( cutoff >= max_repetitions ), rounding_error ); 83 linker_assert ( __builtin_constant_p ( cutoff ), 231 unsigned int cutoff; local [all...] |
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/libWine/ |
H A D | string.c | 85 register unsigned long int cutoff; local 130 cutoff = ULONG_MAX / (unsigned long int) base; 149 if (i > cutoff || (i == cutoff && c > cutlim)) 205 register unsigned long int cutoff; local 250 cutoff = ULONG_MAX / (unsigned long int) base; 269 if (i > cutoff || (i == cutoff && c > cutlim))
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/ |
H A D | device.c | 1866 object->cutoff = 180.0f; 1877 object->cutoff = 180.0f; 1923 object->cutoff = (float)(light->phi * 90 / M_PI);
|
H A D | state.c | 4838 gl_info->gl_ops.gl.p_glLightf(GL_LIGHT0 + Index, GL_SPOT_CUTOFF, lightInfo->cutoff); 4863 gl_info->gl_ops.gl.p_glLightf(GL_LIGHT0 + Index, GL_SPOT_CUTOFF, lightInfo->cutoff); 4884 gl_info->gl_ops.gl.p_glLightf(GL_LIGHT0 + Index, GL_SPOT_CUTOFF, lightInfo->cutoff);
|
H A D | wined3d_private.h | 1406 float cutoff; member in struct:wined3d_light_info
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/ |
H A D | state.c | 4769 glLightf(GL_LIGHT0 + Index, GL_SPOT_CUTOFF, lightInfo->cutoff); 4791 glLightf(GL_LIGHT0 + Index, GL_SPOT_CUTOFF, lightInfo->cutoff); 4808 glLightf(GL_LIGHT0 + Index, GL_SPOT_CUTOFF, lightInfo->cutoff);
|
H A D | device.c | 2427 object->cutoff = 180.0f; 2438 object->cutoff = 180.0f; 2477 object->cutoff = pLight->Phi*90/M_PI;
|
H A D | wined3d_private.h | 1330 float cutoff; member in struct:wined3d_light_info
|
/vbox/src/VBox/Devices/Graphics/shaderlib/ |
H A D | wined3d_private.h | 1358 float cutoff; member in struct:wined3d_light_info
|
Completed in 462 milliseconds