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

123456

/freebsd-10.0-release/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.c898 if (crtc->vsc.full > dfixed_const(2))
899 wm->num_line_pair.full = dfixed_const(2);
901 wm->num_line_pair.full = dfixed_const(1);
903 b.full = dfixed_const(mode->crtc_hdisplay);
904 c.full = dfixed_const(256);
905 a.full = dfixed_div(b, c);
906 request_fifo_depth.full = dfixed_mul(a, wm->num_line_pair);
907 request_fifo_depth.full = dfixed_ceil(request_fifo_depth);
908 if (a.full < dfixed_const(4)) {
920 a.full
[all...]
/freebsd-10.0-release/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-10.0-release/share/doc/psd/20.ipctut/
H A Dudgramsend.c39 #define DATA "The sea is calm tonight, the tide is full . . ."
H A Ddgramsend.c40 #define DATA "The sea is calm tonight, the tide is full . . ."
/freebsd-10.0-release/sys/modules/lindev/
H A DMakefile6 SRCS= full.c lindev.c
/freebsd-10.0-release/contrib/tcsh/
H A Dtw.help.c92 struct Strbuf full = Strbuf_INIT; local
103 cleanup_push(&full, Strbuf_cleanup);
117 * now make the full path name - try first /bar/foo.help, then
121 full.len = 0;
122 Strbuf_append(&full, curdir);
123 Strbuf_append(&full, STRslash);
124 Strbuf_append(&full, name);
125 ep = full.len;
127 full.len = ep;
128 Strbuf_append(&full, str2shor
[all...]
/freebsd-10.0-release/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:__anon4705
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-10.0-release/cddl/contrib/dtracetoolkit/Bin/
H A Dpathopens.d3 * pathopens.d - full pathnames opened successfully count.
7 * successfully opened. This is somewhat special in that the full pathname
15 * PATHNAME full pathname
64 * Make the full pathname
67 * full pathname. Sometimes the filename is absolute, so we must
75 self->full = strjoin(self->dir, self->file);
78 @num[self->full] = count();
82 self->full = 0;
H A Dj_calltime.d90 self->full = (boolean_t)arg0;
99 @num[pid, "gc", self->full == B_FALSE ? "GC" : "Full GC"] = count();
100 @types[pid, "gc", self->full == B_FALSE ? "GC" : "Full GC"] =
102 self->full = 0;
H A Dj_cputime.d90 self->full = (boolean_t)arg0;
99 @num[pid, "gc", self->full == B_FALSE ? "GC" : "Full GC"] = count();
100 @types[pid, "gc", self->full == B_FALSE ? "GC" : "Full GC"] =
102 self->full = 0;
/freebsd-10.0-release/cddl/contrib/dtracetoolkit/Proc/
H A Dpathopens.d3 * pathopens.d - full pathnames opened successfully count.
7 * successfully opened. This is somewhat special in that the full pathname
15 * PATHNAME full pathname
64 * Make the full pathname
67 * full pathname. Sometimes the filename is absolute, so we must
75 self->full = strjoin(self->dir, self->file);
78 @num[self->full] = count();
82 self->full = 0;
/freebsd-10.0-release/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-10.0-release/contrib/llvm/tools/lldb/source/Target/
H A DCPPLanguageRuntime.cpp225 ( count == 0 ) // if we have a full name match just use it
297 llvm::StringRef full (m_full.GetCString());
301 if (ReverseFindMatchingChars (full, parens, arg_start, arg_end))
303 m_arguments = full.substr(arg_start, arg_end - arg_start + 1);
304 if (arg_end + 1 < full.size())
305 m_qualifiers = full.substr(arg_end + 1);
310 if (basename_end > 0 && full[basename_end-1] == '>')
316 if (ReverseFindMatchingChars (full, lt_gt, template_start, template_end, basename_end))
317 context_end = full.rfind(':', template_start);
320 context_end = full
[all...]
H A DObjCLanguageRuntime.cpp261 const char *full = m_full.GetCString(); local
262 const char *class_start = (full[0] == '[' ? full + 1 : full + 2);
270 // No '(' was found in the full name, we can definitively say
273 const char *space_pos = strchr (full, ' ');
296 const char *full = m_full.GetCString(); local
297 const char *class_start = (full[0] == '[' ? full + 1 : full
325 const char *full = m_full.GetCString(); local
345 const char *full = m_full.GetCString(); local
[all...]
/freebsd-10.0-release/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-10.0-release/usr.sbin/ppp/
H A Dtcp.c140 if ((cp = strchr(p->name.full, ':')) != NULL && !strchr(cp + 1, ':')) {
142 host = p->name.full;
160 p->name.full);
188 if (*p->name.full == '\0') {
199 snprintf(p->name.full, sizeof p->name.full, "%s:%d/tcp",
201 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.c122 if (*p->name.full == '\0') {
123 snprintf(p->name.full, sizeof p->name.full, "%s:%d/udp",
125 p->name.base = p->name.full;
236 p->name.full);
241 log_Printf(LogWARN, "%s: connect: %s\n", p->name.full, strerror(errno));
243 log_Printf(LogWARN, "%s: socket: %s\n", p->name.full, strerror(errno));
260 if ((cp = strchr(p->name.full, ':')) != NULL && !strchr(cp + 1, ':')) {
262 host = p->name.full;
/freebsd-10.0-release/cddl/contrib/dtracetoolkit/Java/
H A Dj_calltime.d90 self->full = (boolean_t)arg0;
99 @num[pid, "gc", self->full == B_FALSE ? "GC" : "Full GC"] = count();
100 @types[pid, "gc", self->full == B_FALSE ? "GC" : "Full GC"] =
102 self->full = 0;
H A Dj_cputime.d90 self->full = (boolean_t)arg0;
99 @num[pid, "gc", self->full == B_FALSE ? "GC" : "Full GC"] = count();
100 @types[pid, "gc", self->full == B_FALSE ? "GC" : "Full GC"] =
102 self->full = 0;
/freebsd-10.0-release/contrib/ncurses/ncurses/tinfo/
H A Dtrim_sgr0.c170 * Returns the number of chars from 'full' that we matched. If any mismatch
174 compare_part(const char *part, const char *full) argument
182 if (*part != *full) {
198 if (*part == '$' && *full == '$') {
200 next_full = skip_delay(full);
201 if (next_part != part && next_full != full) {
202 used_delay += (next_full - full);
203 full = next_full;
210 ++full;
/freebsd-10.0-release/tools/tools/nanobsd/rescue/
H A Dmerge.sh7 MD=`mdconfig -a -t vnode -f ${D1}/_.disk.full`

Completed in 405 milliseconds

123456