Searched refs:cutoff (Results 1 - 13 of 13) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Locale/
H A D_wcstol.h63 __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.h65 __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 Dstrtoimax.c63 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 Dstrtoumax.c72 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 Dentropy.c49 * 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 Dstring.c85 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 Ddevice.c1866 object->cutoff = 180.0f;
1877 object->cutoff = 180.0f;
1923 object->cutoff = (float)(light->phi * 90 / M_PI);
H A Dstate.c4838 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 Dwined3d_private.h1406 float cutoff; member in struct:wined3d_light_info
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Dstate.c4769 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 Ddevice.c2427 object->cutoff = 180.0f;
2438 object->cutoff = 180.0f;
2477 object->cutoff = pLight->Phi*90/M_PI;
H A Dwined3d_private.h1330 float cutoff; member in struct:wined3d_light_info
/vbox/src/VBox/Devices/Graphics/shaderlib/
H A Dwined3d_private.h1358 float cutoff; member in struct:wined3d_light_info

Completed in 210 milliseconds