Home
last modified time | relevance | path

Searched full:resolution (Results 1 – 25 of 1079) sorted by relevance

12345678910>>...44

/freebsd/contrib/pkgconf/doc/
H A Dlibpkgconf-queue.rst15 :param pkgconf_list_t* list: the dependency resolution queue to add the package request to.
21 …Compile a dependency resolution queue into a dependency resolution problem if possible, otherwise …
23 :param pkgconf_client_t* client: The pkgconf client object to use for dependency resolution.
26 :return: true if the built dependency resolution problem is consistent, else false
31 Release any memory related to a dependency resolution queue.
33 :param pkgconf_list_t* list: The dependency resolution queue to release.
40 :param pkgconf_client_t* client: The pkgconf client object to use for dependency resolution.
48 :param pkgconf_client_t* client: The pkgconf client object to use for dependency resolution.
57 …Attempt to compile a dependency resolution queue into a dependency resolution problem, then attemp…
62 :param pkgconf_client_t* client: The pkgconf client object to use for dependency resolution.
[all …]
H A Dlibpkgconf-pkg.rst5 The `pkg` module provides dependency resolution services and the overall `.pc` file parsing
12 :param pkgconf_client_t* client: The pkgconf client object to use for dependency resolution.
49 :param pkgconf_client_t* client: The pkgconf client object to use for dependency resolution.
60 :param pkgconf_client_t* client: The pkgconf client object to use for dependency resolution.
104 :param pkgconf_client_t* client: The pkgconf client object to use for dependency resolution.
115 :param pkgconf_client_t* client: The pkgconf client object to use for dependency resolution.
117 :param int depth: The maximum allowed depth for dependency resolution.
125 :param pkgconf_client_t* client: The pkgconf client object to use for dependency resolution.
138 :param pkgconf_client_t* client: The pkgconf client object to use for dependency resolution.
141 …:param int maxdepth: The maximum allowed depth for dependency resolution. -1 means infinite recur…
[all …]
/freebsd/contrib/libpcap/
H A Dpcap-tstamp.manmisc.in43 the timer used to generate the time stamps might have low resolution,
48 a high-resolution timer might use a counter that runs at a rate
82 packets; those time stamps are usually high-resolution time stamps, and
165 and microseconds since that seconds value, even if higher-resolution
168 resolution than one microsecond, the additional digits of resolution are
177 call to specify the resolution of the time stamps to get for the device.
178 If the hardware or software cannot supply a higher-resolution time
183 call will have microsecond resolution.
189 routines can be used to specify the resolution of time stamps to be read
190 from the file; if the time stamps in the file have a lower resolution,
[all …]
H A Dsf-pcapng.c131 #define IF_TSRESOL 9 /* interface's time stamp resolution */
201 uint64_t tsresol; /* time stamp resolution */
227 uint64_t user_tsresol; /* time stamp resolution requested by the user */
522 * Resolution is negative power of 2. in process_idb_options()
528 * Resolution is too high; 2^-{res} in process_idb_options()
532 "Interface Description Block if_tsresol option resolution 2^-%u is too high", in process_idb_options()
540 * Resolution is negative power of 10. in process_idb_options()
544 * Resolution is too high; 2^-{res} in process_idb_options()
552 "Interface Description Block if_tsresol option resolution 10^-%u is too high", in process_idb_options()
704 * Set the default time stamp resolution and offset. in add_interface()
[all …]
/freebsd/share/man/man4/
H A Dpsm.462 .Ss Device Resolution
63 The PS/2 style pointing device usually has several grades of resolution,
67 Some devices may have finer resolution.
68 The current resolution can be changed at runtime.
71 driver allows the user to initially set the resolution
229 .It bit 0..3 RESOLUTION
230 This flag specifies the resolution of the pointing device.
233 is, the finer resolution the device will select.
234 Actual resolution selected by this field varies according to the model
249 Leaving this flag zero will selects the default resolution for the
[all …]
/freebsd/sys/kern/
H A Dsubr_rtc.c94 * The resadj member is used to apply a "resolution adjustment" equal to half
95 * the clock's resolution, which is useful mainly on clocks with a whole-second
96 * resolution. Because the clock truncates the fractional part, adding half the
97 * resolution performs 4/5 rounding. The same adjustment is applied to the
104 int resolution; member
120 * Registered clocks are kept in a list which is sorted by resolution; the more
211 clock_register_flags(device_t clockdev, long resolution, int flags) in clock_register_flags() argument
217 newrtc->resolution = (int)resolution; in clock_register_flags()
220 newrtc->resadj.tv_sec = newrtc->resolution / 2 / 1000000; in clock_register_flags()
221 newrtc->resadj.tv_nsec = newrtc->resolution / 2 % 1000000 * 1000; in clock_register_flags()
[all …]
/freebsd/contrib/pkgconf/libpkgconf/
H A Dqueue.c42 * :param pkgconf_list_t* list: the dependency resolution queue to add the package request to.
70 * :param pkgconf_list_t* list: the dependency resolution queue to add the package request to.
91 …* Compile a dependency resolution queue into a dependency resolution problem if possible, other…
93 * :param pkgconf_client_t* client: The pkgconf client object to use for dependency resolution.
96 * :return: true if the built dependency resolution problem is consistent, else false
120 * Release any memory related to a dependency resolution queue.
122 * :param pkgconf_list_t* list: The dependency resolution queue to release.
395 * :param pkgconf_client_t* client: The pkgconf client object to use for dependency resolution.
419 * :param pkgconf_client_t* client: The pkgconf client object to use for dependency resolution.
447 …* Attempt to compile a dependency resolution queue into a dependency resolution problem, then a…
[all …]
/freebsd/sys/dev/iicbus/sensor/
H A Dlm75.c314 device_printf(dev,"%d bit resolution sensor attached.\n", in lm75_start()
346 SYSCTL_ADD_PROC(ctx, tree, OID_AUTO, "resolution", in lm75_start()
348 lm75_resolution_sysctl, "IU", "LM75 resolution"); in lm75_start()
382 uint8_t resolution = sc->sc_resolution; in lm75_temp_read() local
389 *temp = ((buf >> (16 - resolution)) * multiplier) >> (resolution - 8); in lm75_temp_read()
400 uint8_t buf8[3], resolution = sc->sc_resolution; in lm75_temp_write() local
409 buf = ((temp << (resolution - 8)) / multiplier) << (16 - resolution); in lm75_temp_write()
614 int resolution; in lm75_resolution_sysctl() local
618 resolution = sc->sc_resolution; in lm75_resolution_sysctl()
620 error = sysctl_handle_int(oidp, &resolution, 0, req); in lm75_resolution_sysctl()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/iio/proximity/
H A Dsemtech,sx9324.yaml81 semtech,ph01-resolution:
85 Capacitance measurement resolution. For phase 0 and 1.
86 Higher the number, higher the resolution.
89 semtech,ph23-resolution:
93 Capacitance measurement resolution. For phase 2 and 3
192 semtech,ph01-resolution = <256>;
193 semtech,ph23-resolution = <256>;
H A Dsemtech,sx9360.yaml38 semtech,resolution:
42 Capacitance measurement resolution. For both phases, "reference" and
43 "measurement". Higher the number, higher the resolution.
93 semtech,resolution = <256>;
/freebsd/sys/contrib/device-tree/Bindings/display/imx/
H A Dfsl,imx8qxp-dc-dither.yaml10 The unit can increase the physical color resolution of a display from 5, 6, 7
11 or 8 bits per RGB channel to a virtual resolution of 10 bits. The physical
12 resolution can be set individually for each channel.
14 The resolution is increased by mixing the two physical colors that are nearest
/freebsd/contrib/ntp/util/
H A Dprecision.c16 printf("log2(resolution) = %d, log2(precision) = %d\n", in main()
22 /* Find the resolution of the system clock by watching how the current time
28 * If a machine has resolution (i.e. accurate timing info) > 1us, then it will
39 * ELSE this machine has resolution < time to read clock
83 printf("resolution = %ld usec after %d loop%s\n", in default_get_resolution()
95 " (The resolution is less than the time to read the clock -- Assume 1us)\n"); in default_get_resolution()
96 diff = 1; /* time to read clock >= resolution */ in default_get_resolution()
/freebsd/contrib/ofed/librdmacm/man/
H A Drdma_get_cm_event.3115 Address resolution (rdma_resolve_addr) completed successfully.
117 Address resolution (rdma_resolve_addr) failed.
119 Route resolution (rdma_resolve_route) completed successfully.
121 Route resolution (rdma_resolve_route) failed.
134 is generated in response to a UD QP resolution request over InfiniBand,
156 The network device associated with this ID through address resolution changed
/freebsd/sys/contrib/device-tree/Bindings/leds/
H A Dti,lm3697.yaml61 ti,brightness-resolution:
62 description: Brightness resolution for the LED string.
108 ti,brightness-resolution = <2047>;
118 ti,brightness-resolution = <255>;
/freebsd/sys/dev/ixgbe/
H A Dixgbe_fw_logging.c76 * ixgbe_sysctl_fwlog_log_resolution - Sysctl for setting log message resolution
93 u8 resolution; in ixgbe_sysctl_fwlog_log_resolution() local
97 resolution = cfg->log_resolution; in ixgbe_sysctl_fwlog_log_resolution()
99 error = sysctl_handle_8(oidp, &resolution, 0, req); in ixgbe_sysctl_fwlog_log_resolution()
103 if ((resolution < IXGBE_ACI_FW_LOG_MIN_RESOLUTION) || in ixgbe_sysctl_fwlog_log_resolution()
104 (resolution > IXGBE_ACI_FW_LOG_MAX_RESOLUTION)) { in ixgbe_sysctl_fwlog_log_resolution()
105 DEBUGOUT("Log resolution out-of-bounds\n"); in ixgbe_sysctl_fwlog_log_resolution()
109 cfg->log_resolution = resolution; in ixgbe_sysctl_fwlog_log_resolution()
/freebsd/contrib/ofed/libibcm/
H A Dcm.h306 * ID resolution requests, and listen requests.
339 * connection and service ID resolution requests.
342 * and service ID resolution requests. The service ID should be specified
559 * ib_cm_send_sidr_req - Sends a service ID resolution request to the
562 * service ID resolution request.
563 * @param: Service ID resolution request information.
579 * ib_cm_send_sidr_rep - Sends a service ID resolution reply to the
582 * resolution request.
583 * @param: Service ID resolution reply information.
/freebsd/sys/contrib/alpine-hal/
H A Dal_hal_iofic.h80 * configure the moderation timer resolution for a given group
85 * @param resolution resolution of the timer interval, the resolution determines the rate
92 uint8_t resolution);
99 * @param interval between interrupts in resolution units. 0 disable
/freebsd/contrib/ntp/scripts/update-leap/
H A Dupdate-leap.1update-leapmdoc54 Use only IPv4 addresses for DNS name resolution.
58 Force DNS resolution of following host names on the command line
67 descrip = "Use only IPv6 addresses for DNS name resolution";
69 Force DNS resolution of following host names on the command line
H A Dupdate-leap.mdoc.in54 Use only IPv4 addresses for DNS name resolution.
58 Force DNS resolution of following host names on the command line
67 descrip = "Use only IPv6 addresses for DNS name resolution";
69 Force DNS resolution of following host names on the command line
H A Dupdate-leap-opts.def28 descrip = "Use only IPv4 addresses for DNS name resolution";
30 Force DNS resolution of following host names on the command line
39 descrip = "Use only IPv6 addresses for DNS name resolution";
41 Force DNS resolution of following host names on the command line
/freebsd/sys/dev/ice/
H A Dice_fw_logging.c173 * ice_sysctl_fwlog_log_resolution - Sysctl for setting log message resolution
190 u8 resolution; in ice_sysctl_fwlog_log_resolution() local
194 resolution = cfg->log_resolution; in ice_sysctl_fwlog_log_resolution()
196 error = sysctl_handle_8(oidp, &resolution, 0, req); in ice_sysctl_fwlog_log_resolution()
200 if ((resolution < ICE_AQC_FW_LOG_MIN_RESOLUTION) || in ice_sysctl_fwlog_log_resolution()
201 (resolution > ICE_AQC_FW_LOG_MAX_RESOLUTION)) { in ice_sysctl_fwlog_log_resolution()
202 device_printf(sc->dev, "Log resolution out-of-bounds\n"); in ice_sysctl_fwlog_log_resolution()
206 cfg->log_resolution = resolution; in ice_sysctl_fwlog_log_resolution()
/freebsd/sys/contrib/dev/acpica/components/hardware/
H A Dhwtimer.c166 * PARAMETERS: Resolution - Where the resolution is returned
168 * RETURN: Status and timer resolution
170 * DESCRIPTION: Obtains resolution of the ACPI PM Timer (24 or 32 bits).
176 UINT32 *Resolution) in AcpiGetTimerResolution() argument
181 if (!Resolution) in AcpiGetTimerResolution()
188 *Resolution = 24; in AcpiGetTimerResolution()
192 *Resolution = 32; in AcpiGetTimerResolution()
262 * rollovers, the timer resolution, and timer frequency. in ACPI_EXPORT_SYMBOL()
/freebsd/sys/ofed/include/rdma/
H A Dib_cm.h341 * ID resolution requests, and listen requests.
364 * connection and service ID resolution requests.
367 * and service ID resolution requests. The service ID should be specified
596 * ib_send_cm_sidr_req - Sends a service ID resolution request to the
599 * service ID resolution request.
600 * @param: Service ID resolution request information.
616 * ib_send_cm_sidr_rep - Sends a service ID resolution reply to the
619 * resolution request.
620 * @param: Service ID resolution reply information.
/freebsd/contrib/llvm-project/llvm/tools/llvm-lto2/
H A Dllvm-lto2.cpp1 //===-- llvm-lto2: test harness for the resolution-based LTO interface ----===//
11 // resolution-based LTO interface, and outputs one or more object files.
72 "resolution,preopt,promote,internalize,import,opt,precodegen"
79 "resolution", "preopt", "promote", "internalize",
128 cl::desc("Specify a symbol resolution: filename,symbolname,resolution\n"
129 "where \"resolution\" is a sequence (which may be empty) of the\n"
137 "A resolution for each symbol must be specified"));
255 cl::ParseCommandLineOptions(argc, argv, "Resolution-based LTO test harness"); in run()
267 llvm::errs() << "invalid resolution: " << R << '\n'; in run()
282 llvm::errs() << "invalid character " << C << " in resolution: " << R in run()
[all …]
/freebsd/contrib/ntp/ntpsnmpd/
H A DntpSnmpSubagentObject.c407 * "The time resolution in integer format, where the resolution
411 * ntpEntTimeResolution is a challenge for ntpd, as the resolution is
415 * Logically the resolution must be at least the precision, so report
416 * it as our best approximation of resolution until/unless ntpd provides
428 u_int32 resolution; in get_ntpEntTimeResolution() local
441 resolution = 1 << -precision; in get_ntpEntTimeResolution()
445 (void *)&resolution, in get_ntpEntTimeResolution()
446 sizeof(resolution)); in get_ntpEntTimeResolution()

12345678910>>...44