Home
last modified time | relevance | path

Searched refs:min_pos (Results 1 – 8 of 8) sorted by relevance

/external/freetype/src/autofit/
Daflatin.c1539 FT_Pos min_pos = 32000; in af_latin_hints_compute_segments() local
1552 FT_Pos prev_min_pos = min_pos; in af_latin_hints_compute_segments()
1593 if ( u < min_pos ) in af_latin_hints_compute_segments()
1594 min_pos = u; in af_latin_hints_compute_segments()
1633 segment->pos = (FT_Short)( ( min_pos + max_pos ) >> 1 ); in af_latin_hints_compute_segments()
1634 segment->delta = (FT_Short)( ( max_pos - min_pos ) >> 1 ); in af_latin_hints_compute_segments()
1648 prev_min_pos = min_pos; in af_latin_hints_compute_segments()
1672 if ( prev_min_pos < min_pos ) in af_latin_hints_compute_segments()
1673 min_pos = prev_min_pos; in af_latin_hints_compute_segments()
1694 prev_segment->pos = (FT_Short)( ( min_pos + in af_latin_hints_compute_segments()
[all …]
/external/libxcam/cl_kernel/
Dkernel_fisheye.cl50 float2 min_pos = (float2)(info.center_x - info.radius, info.center_y - info.radius);
52 pos = clamp (pos, min_pos, max_pos);
/external/libbrillo/brillo/streams/
Dfile_stream.cc404 const off64_t min_pos = 0; in GetPosition() local
405 return std::max(min_pos, pos); in GetPosition()
/external/webp/src/enc/
Dbackward_references_enc.c313 const int min_pos = in VP8LHashChainFill() local
340 if (best_length == MAX_LENGTH) pos = min_pos - 1; in VP8LHashChainFill()
344 for (; pos >= min_pos && --iter; pos = chain[pos]) { in VP8LHashChainFill()
/external/scapy/scapy/layers/
Dinet6.py1135 min_pos = 0
1140 min_pos = 0
1142 res.append(l[min_pos])
1143 del(l[min_pos])
/external/python/cpython2/Lib/test/
Dtest_io.py2373 def test_seek_and_tell_with_data(data, min_pos=0): argument
2384 for i in range(min_pos, len(decoded) + 1): # seek positions
2408 min_pos = offset*2
2409 test_seek_and_tell_with_data(prefix + input, min_pos)
/external/python/cpython3/Lib/test/
Dtest_io.py2751 def test_seek_and_tell_with_data(data, min_pos=0): argument
2762 for i in range(min_pos, len(decoded) + 1): # seek positions
2786 min_pos = offset*2
2787 test_seek_and_tell_with_data(prefix + input, min_pos)
/external/freetype/
DChangeLog.272028 `max_pos' is always larger than `min_pos' so `FT_ABS' is not needed.