Searched refs:desired (Results 1 - 25 of 74) sorted by relevance

123

/macosx-10.10/file-46/file/tests/
H A Dtest.c72 char *desired; local
101 desired = slurp(fp, &desired_len);
104 if (strcmp(result, desired) != 0) {
105 (void)fprintf(stderr, "Error: result was\n%s\nexpected:\n%s\n", result, desired);
/macosx-10.10/tcl-105/tcl/tcl/win/
H A DtclWinNotify.c563 Tcl_Time desired; /* Desired wakeup time. */
572 desired.sec = now.sec + vdelay.sec;
573 desired.usec = now.usec + vdelay.usec;
574 if (desired.usec > 1000000) {
575 ++desired.sec;
576 desired.usec -= 1000000;
589 if (now.sec > desired.sec) {
591 } else if ((now.sec == desired.sec) && (now.usec >= desired.usec)) {
595 vdelay.sec = desired
555 Tcl_Time desired; /* Desired wakeup time. */ local
[all...]
/macosx-10.10/tcl-105/tcl84/tcl/win/
H A DtclWinNotify.c545 Tcl_Time desired; /* Desired wakeup time */
549 desired.sec = now.sec + ( ms / 1000 );
550 desired.usec = now.usec + 1000 * ( ms % 1000 );
551 if ( desired.usec > 1000000 ) {
552 ++desired.sec;
553 desired.usec -= 1000000;
559 if ( now.sec > desired.sec ) {
561 } else if ( ( now.sec == desired.sec )
562 && ( now.usec >= desired.usec ) ) {
565 sleepTime = ( ( 1000 * ( desired
537 Tcl_Time desired; /* Desired wakeup time */ local
[all...]
/macosx-10.10/bind9-45.101/bind9/lib/isc/unix/
H A Dentropy.c73 get_from_filesource(isc_entropysource_t *source, isc_uint32_t desired) { argument
83 desired = desired / 8 + (((desired & 0x07) > 0) ? 1 : 0);
86 while (desired > 0) {
87 ndesired = ISC_MIN(desired, sizeof(buf));
99 desired -= n;
113 get_from_usocketsource(isc_entropysource_t *source, isc_uint32_t desired) { argument
124 desired = desired /
250 fillpool(isc_entropy_t *ent, unsigned int desired, isc_boolean_t blocking) argument
[all...]
/macosx-10.10/bind9-45.101/bind9/lib/isc/win32/
H A Dentropy.c49 get_from_filesource(isc_entropysource_t *source, isc_uint32_t desired) { argument
59 desired = desired / 8 + (((desired & 0x07) > 0) ? 1 : 0);
62 while (desired > 0) {
63 ndesired = ISC_MIN(desired, sizeof(buf));
72 desired -= ndesired;
84 fillpool(isc_entropy_t *ent, unsigned int desired, isc_boolean_t blocking) { argument
94 needed = desired;
/macosx-10.10/ntp-92/lib/isc/unix/
H A Dentropy.c73 get_from_filesource(isc_entropysource_t *source, isc_uint32_t desired) { argument
83 desired = desired / 8 + (((desired & 0x07) > 0) ? 1 : 0);
86 while (desired > 0) {
87 ndesired = ISC_MIN(desired, sizeof(buf));
99 desired -= n;
113 get_from_usocketsource(isc_entropysource_t *source, isc_uint32_t desired) { argument
124 desired = desired /
250 fillpool(isc_entropy_t *ent, unsigned int desired, isc_boolean_t blocking) argument
[all...]
/macosx-10.10/ntp-92/lib/isc/win32/
H A Dentropy.c49 get_from_filesource(isc_entropysource_t *source, isc_uint32_t desired) { argument
59 desired = desired / 8 + (((desired & 0x07) > 0) ? 1 : 0);
62 while (desired > 0) {
63 ndesired = ISC_MIN(desired, sizeof(buf));
72 desired -= ndesired;
84 fillpool(isc_entropy_t *ent, unsigned int desired, isc_boolean_t blocking) { argument
94 needed = desired;
/macosx-10.10/ICU-531.30/icuSources/i18n/
H A Dastro.h306 * @param longitude The desired longitude, in <em>degrees</em> east of
309 * @param latitude The desired latitude, in <em>degrees</em>. Positive
357 * @param jdn the desired time, expressed as a "julian day number",
546 * the desired value.
549 UDate getSunTime(double desired, UBool next);
648 * is desired, <tt>false</tt> for the previous occurrance.
655 * longitude will have the desired value.
657 * @param desired The desired longitude.
659 * is desired, <t
[all...]
H A Dastro.cpp262 * @param longitude The desired longitude, in <em>degrees</em> east of
265 * @param latitude The desired latitude, in <em>degrees</em>. Positive
310 * @param jdn the desired time, expressed as a "julian day number",
1245 * the desired value.
1257 UDate CalendarAstronomer::getSunTime(double desired, UBool next) argument
1260 // this with desired == CalendarAstronomer::WINTER_SOLSTICE()
1261 if (desired == CalendarAstronomer::WINTER_SOLSTICE() && fTime >= winterSolsticeDatesFirst && fTime < winterSolsticeDatesLast) {
1279 desired,
1477 // // number" d as outlined above, for the desired moment. Next compute:
6834 * is desired, <t
6868 getMoonTime(double desired, UBool next) argument
6898 getMoonTime(const CalendarAstronomer::MoonAge& desired, UBool next) argument
6932 timeOfAngle(AngleFunc& func, double desired, double periodDays, double epsilon, UBool next) argument
[all...]
/macosx-10.10/ruby-106/ruby/ext/dl/win32/lib/win32/
H A Dregistry.rb252 def OpenKey(hkey, name, opt, desired)
254 check RegOpenKeyExA.call(hkey, name, opt, desired, result)
258 def CreateKey(hkey, name, opt, desired)
261 check RegCreateKeyExA.call(hkey, name, 0, 0, opt, desired,
373 # --- Registry.open(key, subkey, desired = KEY_READ, opt = REG_OPTION_RESERVED)
375 # --- Registry.open(key, subkey, desired = KEY_READ, opt = REG_OPTION_RESERVED) { |reg| ... }
380 # desired and opt is access mask and key option.
383 def self.open(hkey, subkey, desired = KEY_READ, opt = REG_OPTION_RESERVED)
385 newkey = API.OpenKey(hkey.hkey, subkey, opt, desired)
399 # --- Registry.create(key, subkey, desired
[all...]
/macosx-10.10/ruby-106/ruby/ext/fiddle/win32/lib/win32/
H A Dregistry.rb252 def OpenKey(hkey, name, opt, desired)
254 check RegOpenKeyExA.call(hkey, name, opt, desired, result)
258 def CreateKey(hkey, name, opt, desired)
261 check RegCreateKeyExA.call(hkey, name, 0, 0, opt, desired,
373 # --- Registry.open(key, subkey, desired = KEY_READ, opt = REG_OPTION_RESERVED)
375 # --- Registry.open(key, subkey, desired = KEY_READ, opt = REG_OPTION_RESERVED) { |reg| ... }
380 # desired and opt is access mask and key option.
383 def self.open(hkey, subkey, desired = KEY_READ, opt = REG_OPTION_RESERVED)
385 newkey = API.OpenKey(hkey.hkey, subkey, opt, desired)
399 # --- Registry.create(key, subkey, desired
[all...]
/macosx-10.10/vim-55/runtime/macros/hanoi/
H A Dhanoi.vim29 " Y create tower of desired height
53 "create a tower of desired height
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDSystem/
H A DIOHIPointing.cpp208 static bool SetupAcceleration (OSData * data, IOFixed desired, IOFixed devScale, IOFixed crsrScale, void ** scaleSegments, IOItemCount * scaleSegCount);
212 static bool PACurvesSetupAccelParams (OSArray *parametricCurves, IOFixed64 desired, IOFixed64 devScale, IOFixed64 crsrScale, IOHIPointing__PAParameters &primaryParams, IOHIPointing__PASecondaryParameters &secondaryParams);
757 void IOHIPointing::setupForAcceleration( IOFixed desired )
764 // IOLog("%s %d: got %08x and %p\n", __PRETTY_FUNCTION__, __LINE__, desired, parametricAccelerationCurves);
787 // IOLog("%s: Calling PACurvesSetupAccelParams with %08x, %08x, %08x\n", __PRETTY_FUNCTION__, desired, devScale, crsrScale);
790 desired64.fromFixed(desired),
819 if (SetupAcceleration (table, desired, devScale, crsrScale, &_scaleSegments, &_scaleSegCount))
821 _acceleration = desired;
828 void IOHIPointing::setupScrollForAcceleration( IOFixed desired )
839 if (desired <
1729 SetupAcceleration(OSData * data, IOFixed desired, IOFixed devScale, IOFixed crsrScale, void ** scaleSegments, IOItemCount * scaleSegCount) argument
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/mac/
H A DWebFontCache.mm83 BOOL desired = (desiredTraits & mask) != 0;
84 BOOL chosenHasUnwantedTrait = desired != ((chosenTraits & mask) != 0);
85 BOOL candidateHasUnwantedTrait = desired != ((candidateTraits & mask) != 0);
95 // If both are the same distance from the desired weight, prefer the candidate if it is further from medium.
99 // Otherwise, prefer the one closer to the desired weight.
/macosx-10.10/JavaScriptCore-7600.1.17/bytecode/
H A DSpeculatedType.h386 inline bool speculationChecked(SpeculatedType actual, SpeculatedType desired) argument
388 return (actual | desired) == desired;
/macosx-10.10/SmartcardCCID-55008/ccid/ccid/
H A Dylwrap77 Wrapper for lex/yacc invocations, renaming files as desired.
/macosx-10.10/Heimdal-398.1.2/
H A Dylwrap46 Wrapper for lex/yacc invocations, renaming files as desired.
/macosx-10.10/cxxfilt-11/cxxfilt/
H A Dylwrap48 Wrapper for lex/yacc invocations, renaming files as desired.
/macosx-10.10/gnuserv-7/gnuserv/
H A Ddevices.el186 (let ((desired (device-connection device)))
188 desired))))))
/macosx-10.10/gnutar-453/gnutar/build-aux/
H A Dylwrap48 Wrapper for lex/yacc invocations, renaming files as desired.
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libjpeg/
H A Djquant2.c42 * have as many boxes as desired colors. Then the mean color in each
60 * and it also interfered with desired capabilities such as quantizing to an
117 * desired colors. 16 bits/cell is plenty for that too.)
198 int desired; /* desired # of colors = size of colormap */ member in struct:__anon13117
1149 select_colors(cinfo, cquantize->desired);
1278 int desired = cinfo->desired_number_of_colors; local
1280 if (desired < 8)
1283 if (desired > MAXNUMCOLORS)
1286 ((j_common_ptr) cinfo,JPOOL_IMAGE, (JDIMENSION) desired, (JDIMENSIO
[all...]
H A Djdmarker.c1199 * The desired restart marker number (0..7) is passed as a parameter.
1214 * without having to discard data if we don't find the desired marker.
1221 * #2 is appropriate if we think the desired marker lies ahead, while #3 is
1223 * that we have missed the desired restart marker, probably because it got
1238 jpeg_resync_to_restart (j_decompress_ptr cinfo, int desired)
1244 WARNMS2(cinfo, JWRN_MUST_RESYNC, marker, desired);
1253 if (marker == ((int) M_RST0 + ((desired+1) & 7)) ||
1254 marker == ((int) M_RST0 + ((desired+2) & 7)))
1256 else if (marker == ((int) M_RST0 + ((desired-1) & 7)) ||
1257 marker == ((int) M_RST0 + ((desired
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/liblunicode/utbm/
H A DREADME87 * Set the search flags desired.
/macosx-10.10/bind9-45.101/bind9/lib/isc/
H A Dentropy.c478 get_from_callback(isc_entropysource_t *source, unsigned int desired, argument
487 if (desired == 0)
502 while (desired > 0 && result == ISC_R_SUCCESS) {
507 desired -= ISC_MIN(got, desired);
/macosx-10.10/ntp-92/lib/isc/
H A Dentropy.c475 get_from_callback(isc_entropysource_t *source, unsigned int desired, argument
484 if (desired == 0)
499 while (desired > 0 && result == ISC_R_SUCCESS) {
504 desired -= ISC_MIN(got, desired);

Completed in 340 milliseconds

123