Searched refs:full (Results 1 - 25 of 163) sorted by relevance

1234567

/freebsd-11-stable/sys/dev/drm2/radeon/
H A Drs690.c83 tmp.full = dfixed_const(100);
84 rdev->pm.igp_sideport_mclk.full = dfixed_const(le32_to_cpu(info->info.ulBootUpMemoryClock));
85 rdev->pm.igp_sideport_mclk.full = dfixed_div(rdev->pm.igp_sideport_mclk, tmp);
87 rdev->pm.igp_system_mclk.full = dfixed_const(le16_to_cpu(info->info.usK8MemoryClock));
89 rdev->pm.igp_system_mclk.full = dfixed_const(rdev->clock.default_mclk);
90 rdev->pm.igp_system_mclk.full = dfixed_div(rdev->pm.igp_system_mclk, tmp);
92 rdev->pm.igp_system_mclk.full = dfixed_const(400);
93 rdev->pm.igp_ht_link_clk.full = dfixed_const(le16_to_cpu(info->info.usFSBClock));
94 rdev->pm.igp_ht_link_width.full = dfixed_const(info->info.ucHTLinkWidth);
97 tmp.full
[all...]
H A Drv515.c955 if (crtc->vsc.full > dfixed_const(2))
956 wm->num_line_pair.full = dfixed_const(2);
958 wm->num_line_pair.full = dfixed_const(1);
960 b.full = dfixed_const(mode->crtc_hdisplay);
961 c.full = dfixed_const(256);
962 a.full = dfixed_div(b, c);
963 request_fifo_depth.full = dfixed_mul(a, wm->num_line_pair);
964 request_fifo_depth.full = dfixed_ceil(request_fifo_depth);
965 if (a.full < dfixed_const(4)) {
977 a.full
[all...]
H A Dr100.c3337 min_mem_eff.full = dfixed_const_8(0);
3358 temp_ff.full = dfixed_const(temp);
3359 mem_bw.full = dfixed_mul(mclk_ff, temp_ff);
3361 pix_clk.full = 0;
3362 pix_clk2.full = 0;
3363 peak_disp_bw.full = 0;
3365 temp_ff.full = dfixed_const(1000);
3366 pix_clk.full = dfixed_const(mode1->clock); /* convert to fixed point */
3367 pix_clk.full = dfixed_div(pix_clk, temp_ff);
3368 temp_ff.full
[all...]
H A Dsi.c555 a.full = dfixed_const(1000);
556 yclk.full = dfixed_const(wm->yclk);
557 yclk.full = dfixed_div(yclk, a);
558 dram_channels.full = dfixed_const(wm->dram_channels * 4);
559 a.full = dfixed_const(10);
560 dram_efficiency.full = dfixed_const(7);
561 dram_efficiency.full = dfixed_div(dram_efficiency, a);
562 bandwidth.full = dfixed_mul(dram_channels, yclk);
563 bandwidth.full = dfixed_mul(bandwidth, dram_efficiency);
575 a.full
[all...]
H A Devergreen.c845 a.full = dfixed_const(1000);
846 yclk.full = dfixed_const(wm->yclk);
847 yclk.full = dfixed_div(yclk, a);
848 dram_channels.full = dfixed_const(wm->dram_channels * 4);
849 a.full = dfixed_const(10);
850 dram_efficiency.full = dfixed_const(7);
851 dram_efficiency.full = dfixed_div(dram_efficiency, a);
852 bandwidth.full = dfixed_mul(dram_channels, yclk);
853 bandwidth.full = dfixed_mul(bandwidth, dram_efficiency);
865 a.full
[all...]
/freebsd-11-stable/sys/dev/drm2/
H A Ddrm_fixed.h32 u32 full; member in union:dfixed
40 #define dfixed_mul(A, B) ((u64)((u64)(A).full * (B).full + 2048) >> 12)
41 #define dfixed_init(A) { .full = dfixed_const((A)) }
42 #define dfixed_init_half(A) { .full = dfixed_const_half((A)) }
43 #define dfixed_trunc(A) ((A).full >> 12)
44 #define dfixed_frac(A) ((A).full & ((1 << 12) - 1))
57 if (A.full > dfixed_const(non_frac))
65 u64 tmp = ((u64)A.full << 13);
67 do_div(tmp, B.full);
[all...]
/freebsd-11-stable/tools/tools/shlib-compat/test/
H A Dregress.sh4 run() { ../shlib-compat.py --no-dump -vv libtest$1/libtest$1.so.0.full libtest$2/libtest$2.so.0.full; }
/freebsd-11-stable/share/doc/psd/20.ipctut/
H A Dudgramsend.c35 #define DATA "The sea is calm tonight, the tide is full . . ."
H A Ddgramsend.c36 #define DATA "The sea is calm tonight, the tide is full . . ."
/freebsd-11-stable/contrib/tcsh/
H A Dtw.help.c88 struct Strbuf full = Strbuf_INIT; local
99 cleanup_push(&full, Strbuf_cleanup);
113 * now make the full path name - try first /bar/foo.help, then
117 full.len = 0;
118 Strbuf_append(&full, curdir);
119 Strbuf_append(&full, STRslash);
120 Strbuf_append(&full, name);
121 ep = full.len;
123 full.len = ep;
124 Strbuf_append(&full, str2shor
[all...]
/freebsd-11-stable/contrib/xz/src/liblzma/lz/
H A Dlz_decoder.h30 /// Indicates how full the dictionary is. This is used by
33 size_t full; member in struct:__anon4454
114 return dict->full == 0;
122 return dict->full > distance;
157 assert(dict->full == dict->size);
176 // Update how full the dictionary is.
177 if (dict->full < dict->pos)
178 dict->full = dict->pos;
185 /// already full and the byte couldn't be added.
194 if (dict->pos > dict->full)
[all...]
/freebsd-11-stable/crypto/openssh/
H A Dlogintest.c225 char full[17], strip[9], abbrev[5]; local
227 memset(full, '\0', sizeof(full));
231 line_fullname(full, line, sizeof(full)-1);
232 line_stripname(strip, full, sizeof(strip)-1);
233 line_abbrevname(abbrev, full, sizeof(abbrev)-1);
234 printf("%s: %s, %s, %s\n", line, full, strip, abbrev);
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBFileSpecList.i36 FindFileIndex (uint32_t idx, const SBFileSpec &sb_file, bool full);
/freebsd-11-stable/contrib/gdb/gdb/
H A Dgnu-v2-abi.c190 gnuv2_value_rtti_type (struct value *v, int *full, int *top, int *using_enc)
204 if (full)
205 *full = 0;
269 if (TYPE_N_BASECLASSES(rtti_type) > 1 && full && (*full) != 1)
277 if (full)
278 *full=0;
282 if (full)
283 *full=1;
289 if (full)
189 gnuv2_value_rtti_type(struct value *v, int *full, int *top, int *using_enc) argument
[all...]
H A Dhpacc-abi.c178 hpacc_value_rtti_type (struct value *v, int *full, int *top, int *using_enc) argument
188 if (full)
189 *full = 0;
267 printf ("RTTI type name %s, tag %s, full? %d\n", TYPE_NAME (rtti_type),
268 TYPE_TAG_NAME (rtti_type), full ? *full : -1);
271 if (full /* Non-null pointer passed */
285 *full = 1;
H A Dcp-abi.h135 int *full, int *top, int *using_enc);
161 struct type *(*rtti_type) (struct value *v, int *full, int *top,
/freebsd-11-stable/usr.sbin/ppp/
H A Dtcp.c142 if ((cp = strchr(p->name.full, ':')) != NULL && !strchr(cp + 1, ':')) {
144 host = p->name.full;
162 p->name.full);
190 if (*p->name.full == '\0') {
201 snprintf(p->name.full, sizeof p->name.full, "%s:%d/tcp",
203 p->name.base = p->name.full;
H A Datm.c192 p->name.full);
196 log_Printf(LogWARN, "%s: connect: %s\n", p->name.full, strerror(errno));
198 log_Printf(LogWARN, "%s: socket: %s\n", p->name.full, strerror(errno));
213 if (p->fd < 0 && !strncasecmp(p->name.full, PPPOA, PPPOA_LEN)
214 && p->name.full[PPPOA_LEN] == ':') {
218 if (sscanf(p->name.full + PPPOA_LEN + 1, "%25[A-Za-z0-9]:%u.%u", iface,
221 "PPPoA:if:vpi.vci expected\n", p->name.full);
H A Dudp.c124 if (*p->name.full == '\0') {
125 snprintf(p->name.full, sizeof p->name.full, "%s:%d/udp",
127 p->name.base = p->name.full;
238 p->name.full);
243 log_Printf(LogWARN, "%s: connect: %s\n", p->name.full, strerror(errno));
245 log_Printf(LogWARN, "%s: socket: %s\n", p->name.full, strerror(errno));
262 if ((cp = strchr(p->name.full, ':')) != NULL && !strchr(cp + 1, ':')) {
264 host = p->name.full;
H A Dphysical.c200 *p->name.full = '\0';
201 p->name.base = p->name.full;
308 if (*p->name.full == '/' && p->type != PHYS_DIRECT &&
311 log_Printf(LogPHASE, "%s: %s is in use\n", p->link.name, p->name.full);
314 p->link.name, p->name.full, uu_lockerr(res));
324 if (*p->name.full == '/' && p->type != PHYS_DIRECT &&
372 if (*p->name.full == '/') {
386 p->name.base = p->name.full;
387 *p->name.full = '\0';
460 *p->name.full
[all...]
/freebsd-11-stable/contrib/ncurses/ncurses/tinfo/
H A Dtrim_sgr0.c178 * Returns the number of chars from 'full' that we matched. If any mismatch
182 compare_part(const char *part, const char *full) argument
190 if (*part != *full) {
206 if (*part == '$' && *full == '$') {
208 next_full = skip_delay(full);
209 if (next_part != part && next_full != full) {
210 used_delay += (unsigned) (next_full - full);
211 full = next_full;
218 ++full;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBFileSpecList.h37 uint32_t FindFileIndex(uint32_t idx, const SBFileSpec &sb_file, bool full);
/freebsd-11-stable/sys/nfsclient/
H A Dnfsm_subs.h62 void nfsm_v3attrbuild_xx(struct vattr *va, int full, struct mbuf **mb,
83 /* If full is true, set all fields, otherwise just set mode and time fields */
84 #define nfsm_v3attrbuild(a, full) \
85 nfsm_v3attrbuild_xx(a, full, &mb, &bpos)
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBFileSpecList.cpp74 bool full) {
77 full);
79 return m_opaque_up->FindFileIndex(idx, sb_file.ref(), full);
73 FindFileIndex(uint32_t idx, const SBFileSpec &sb_file, bool full) argument
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/privs/
H A Dtst.providers.ksh30 echo failed to enable io provider with full privs

Completed in 170 milliseconds

1234567