Home
last modified time | relevance | path

Searched refs:dist (Results 1 – 25 of 42) sorted by relevance

12

/reactos/sdk/lib/3rdparty/freetype/src/autofit/
H A Daflatin2.c143 dist = -dist; in af_latin2_metrics_init_widths()
654 if ( dist <= 48 && dist >= -48 ) in af_latin2_metrics_scale_dim()
1170 dist = -dist; in af_latin2_hints_compute_edges()
1190 dist = -dist; in af_latin2_hints_compute_edges()
1472 dist = -dist; in af_latin2_hints_compute_blue_edges()
1495 dist = -dist; in af_latin2_hints_compute_blue_edges()
1621 dist = -dist; in af_latin2_snap_width()
1734 dist = ( dist + 32 ) & ~63; in af_latin2_compute_stem_width()
1751 dist = ( dist + 16 ) & ~63; in af_latin2_compute_stem_width()
1774 dist = ( dist + 64 ) >> 1; in af_latin2_compute_stem_width()
[all …]
H A Daflatin.c226 dist = -dist; in af_latin_metrics_init_widths()
1339 if ( dist <= 48 && dist >= -48 ) in af_latin_metrics_scale_dim()
2178 dist = -dist; in af_latin_hints_compute_edges()
2242 dist = -dist; in af_latin_hints_compute_edges()
2506 dist = -dist; in af_latin_hints_compute_blue_edges()
2532 dist = -dist; in af_latin_hints_compute_blue_edges()
2667 dist = -dist; in af_latin_snap_width()
2828 dist = ( dist + 16 ) & ~63; in af_latin_compute_stem_width()
2842 dist = ( dist + 32 ) & ~63; in af_latin_compute_stem_width()
2851 dist = ( dist + 64 ) >> 1; in af_latin_compute_stem_width()
[all …]
H A Dafcjk.c233 dist = -dist; in af_cjk_metrics_init_widths()
712 if ( dist <= 48 && dist >= -48 ) in af_cjk_metrics_scale_dim()
1065 dist = -dist; in af_cjk_hints_compute_edges()
1357 dist = -dist; in af_cjk_hints_compute_blue_edges()
1475 dist = -dist; in af_cjk_snap_width()
1548 dist += ( 54 - dist ) / 2; in af_cjk_compute_stem_width()
1581 dist = ( dist + 16 ) & ~63; in af_cjk_compute_stem_width()
1595 dist = ( dist + 32 ) & ~63; in af_cjk_compute_stem_width()
1604 dist = ( dist + 64 ) >> 1; in af_cjk_compute_stem_width()
1607 dist = ( dist + 22 ) & ~63; in af_cjk_compute_stem_width()
[all …]
/reactos/dll/opengl/glu32/src/libnurbs/internals/
H A Dmapdescv.cc106 REAL *dist, in calcPartialVelocity() argument
213 dist[0] = 0.0; in calcPartialVelocity()
214 dist[1] = 0.0; in calcPartialVelocity()
217 if( mag[i][j] > dist[0] ) dist[0] = mag[i][j]; in calcPartialVelocity()
220 if( mag[i][j] > dist[1] ) dist[1] = mag[i][j]; in calcPartialVelocity()
222 dist[0] = fac * sqrtf( dist[0] ); in calcPartialVelocity()
223 dist[1] = fac * sqrtf( dist[1] ); in calcPartialVelocity()
230 if( mag[i][j] > dist[0] ) dist[0] = mag[i][j]; in calcPartialVelocity()
233 if( mag[i][j] > dist[1] ) dist[1] = mag[i][j]; in calcPartialVelocity()
235 dist[0] = fac * sqrtf( dist[0] ); in calcPartialVelocity()
[all …]
H A Dvarray.cc140 REAL dist = vval[i] - vval[i+1]; in init() local
141 if( dist > delta ) { in init()
142 long steps = ((long) (dist/delta)) +1; in init()
143 float deltav = - dist / (REAL) steps; in init()
/reactos/sdk/lib/3rdparty/zlib/
H A Dinffast.c77 unsigned dist; /* match distance */ local
148 dist = (unsigned)(here->val);
158 dist += (unsigned)hold & ((1U << op) - 1);
160 if (dist > dmax) {
168 Tracevv((stderr, "inflate: distance %u\n", dist));
170 if (dist > op) { /* see if copy from window */
171 op = dist - op; /* distance back in window */
191 from = out - dist;
207 from = out - dist; /* rest from output */
236 from = out - dist; /* rest from output */
[all …]
H A Ddeflate.h295 int ZLIB_INTERNAL _tr_tally OF((deflate_state *s, unsigned dist, unsigned lc));
303 #define d_code(dist) \ argument
304 ((dist) < 256 ? _dist_code[dist] : _dist_code[256+((dist)>>7)])
331 ush dist = (ush)(distance); \
332 s->sym_buf[s->sym_next++] = (uch)dist; \
333 s->sym_buf[s->sym_next++] = (uch)(dist >> 8); \
335 dist--; \
337 s->dyn_dtree[d_code(dist)].Freq++; \
H A Dtrees.c240 int dist; /* distance index */ in tr_static_init() local
271 dist = 0; in tr_static_init()
273 base_dist[code] = dist; in tr_static_init()
275 _dist_code[dist++] = (uch)code; in tr_static_init()
281 base_dist[code] = dist << 7; in tr_static_init()
1014 int ZLIB_INTERNAL _tr_tally(s, dist, lc) in _tr_tally() argument
1019 s->sym_buf[s->sym_next++] = (uch)dist;
1022 if (dist == 0) {
1054 dist = s->sym_buf[sx++] & 0xff;
1057 if (dist == 0) {
[all …]
H A Dinflate.c405 unsigned dist; local
431 dist = state->wsize - state->wnext;
432 if (dist > copy) dist = copy;
433 zmemcpy(state->window + state->wnext, end - copy, dist);
434 copy -= dist;
441 state->wnext += dist;
443 if (state->whave < state->wsize) state->whave += dist;
/reactos/sdk/lib/3rdparty/freetype/src/pshinter/
H A Dpshglob.c62 FT_Pos w, dist; in psh_globals_scale_widths() local
66 dist = w - stand->cur; in psh_globals_scale_widths()
68 if ( dist < 0 ) in psh_globals_scale_widths()
69 dist = -dist; in psh_globals_scale_widths()
71 if ( dist < 128 ) in psh_globals_scale_widths()
97 FT_Pos dist;
101 dist = width - w;
102 if ( dist < 0 )
103 dist = -dist;
104 if ( dist < best )
[all …]
/reactos/sdk/lib/3rdparty/freetype/src/gzip/
H A Dinfcodes.c45 uInt dist; /* distance back to copy from */ member
176 c->sub.copy.dist = t->base; in inflate_codes()
193 c->sub.copy.dist += (uInt)b & inflate_mask[j]; in inflate_codes()
195 Tracevv((stderr, "inflate: distance %u\n", c->sub.copy.dist)); in inflate_codes()
198 f = q - c->sub.copy.dist; in inflate_codes()
/reactos/dll/win32/dbghelp/
H A Dinflate.c299 unsigned dist; /* match distance */ in inflate_fast() local
370 dist = (unsigned)(here.val); in inflate_fast()
380 dist += (unsigned)hold & ((1U << op) - 1); in inflate_fast()
382 if (dist > dmax) { in inflate_fast()
413 from = out - dist; in inflate_fast()
1035 unsigned dist; in updatewindow() local
1061 dist = state->wsize - state->wnext; in updatewindow()
1062 if (dist > copy) dist = copy; in updatewindow()
1063 zmemcpy(state->window + state->wnext, end - copy, dist); in updatewindow()
1064 copy -= dist; in updatewindow()
[all …]
/reactos/dll/win32/wininet/
H A Dinflate.c294 unsigned dist; /* match distance */ in inflate_fast() local
365 dist = (unsigned)(here.val); in inflate_fast()
375 dist += (unsigned)hold & ((1U << op) - 1); in inflate_fast()
377 if (dist > dmax) { in inflate_fast()
408 from = out - dist; in inflate_fast()
1030 unsigned dist; in updatewindow() local
1056 dist = state->wsize - state->wnext; in updatewindow()
1057 if (dist > copy) dist = copy; in updatewindow()
1058 zmemcpy(state->window + state->wnext, end - copy, dist); in updatewindow()
1059 copy -= dist; in updatewindow()
[all …]
/reactos/sdk/lib/3rdparty/stlport/test/eh/
H A Dtest_insert.h48 size_t dist = 0; in CountNewItems() local
50 EH_DISTANCE( firstNew, lastNew, dist ); in CountNewItems()
52 EH_DISTANCE( Iter(firstNew), Iter(lastNew), dist ); in CountNewItems()
54 return dist; in CountNewItems()
85 size_t dist = 0; in CountUniqueItems_Aux() local
87 EH_DISTANCE( firstNew, lastNew, dist ); in CountUniqueItems_Aux()
89 EH_DISTANCE( Iter(firstNew), Iter(lastNew), dist ); in CountUniqueItems_Aux()
91 keys.reserve( dist ); in CountUniqueItems_Aux()
/reactos/sdk/lib/3rdparty/freetype/src/truetype/
H A Dttpload.c138 FT_Long dist = 0x7FFFFFFFL; in tt_face_load_loca() local
148 if ( diff > 0 && diff < dist ) in tt_face_load_loca()
150 dist = diff; in tt_face_load_loca()
158 dist = (FT_Long)stream->size - pos; in tt_face_load_loca()
161 if ( new_loca_len <= (FT_ULong)dist ) in tt_face_load_loca()
/reactos/drivers/network/tcpip/lwip/
H A DCMakeLists.txt32 add_custom_target(dist COMMAND ${CMAKE_MAKE_PROGRAM} package_source) target
34 add_dependencies(dist lwipdocs)
/reactos/dll/3rdparty/libxslt/
H A DMakefile.am15 dist-hook: cleanup
67 @(unset CDPATH ; $(MAKE) dist && rpmbuild -ta $(distdir).tar.gz)
/reactos/modules/rostests/winetests/cabinet/
H A Dfdi.c176 static LONG CDECL fdi_seek(INT_PTR hf, LONG dist, int seektype) in fdi_seek() argument
179 return SetFilePointer(handle, dist, NULL, seektype); in fdi_seek()
209 static LONG CDECL fdi_seek_static(INT_PTR hf, LONG dist, int seektype) in fdi_seek_static() argument
212 return fdi_seek(static_fdi_handle, dist, seektype); in fdi_seek_static()
521 static LONG CDECL fci_seek(INT_PTR hf, LONG dist, int seektype, int *err, void *pv) in fci_seek() argument
526 ret = SetFilePointer(handle, dist, NULL, seektype); in fci_seek()
796 static LONG CDECL fdi_mem_seek(INT_PTR hf, LONG dist, int seektype) in fdi_mem_seek() argument
803 data->pos = dist; in fdi_mem_seek()
807 data->pos += dist; in fdi_mem_seek()
/reactos/modules/rosapps/applications/net/dhcpd/
H A DMakefile.in219 distcheck: dist
232 && $(MAKE) $(AM_MAKEFLAGS) dist
239 dist: distdir
243 dist-all: distdir
/reactos/sdk/include/psdk/
H A Dfdi.h220 typedef LONG (__cdecl *PFNSEEK) (INT_PTR hf, LONG dist, int seektype);
221 #define FNSEEK(fn) LONG __cdecl fn(INT_PTR hf, LONG dist, int seektype)
H A Dfci.h184 typedef LONG (__cdecl *PFNFCISEEK) (INT_PTR hf, LONG dist, int seektype, int *err, void *pv);
185 #define FNFCISEEK(fn) LONG __cdecl fn(INT_PTR hf, LONG dist, int seektype, int *err, void *pv)
/reactos/modules/rosapps/applications/sysutils/mkdosfs/
H A Dmkdosfs-ygg-0.3b.lsm15 Alternate-site: ftp.yggdrasil.com /pub/dist/mkdosfs
/reactos/dll/win32/cabinet/
H A Dcabinet_main.c151 static LONG CDECL fdi_seek(INT_PTR hf, LONG dist, int seektype) in fdi_seek() argument
154 return SetFilePointer(handle, dist, NULL, seektype); in fdi_seek()
/reactos/sdk/lib/3rdparty/adns/
H A DMakefile.in57 dist: distprep
/reactos/dll/win32/msi/
H A Dmedia.c170 static LONG CDECL cabinet_seek(INT_PTR hf, LONG dist, int seektype) in cabinet_seek() argument
174 return SetFilePointer(handle, dist, NULL, seektype); in cabinet_seek()
245 static LONG CDECL cabinet_seek_stream( INT_PTR hf, LONG dist, int seektype ) in cabinet_seek_stream() argument
252 move.QuadPart = dist; in cabinet_seek_stream()

12