Searched refs:min_pos (Results 1 – 8 of 8) sorted by relevance
/external/freetype/src/autofit/ |
D | aflatin.c | 1563 FT_Pos min_pos = 32000; in af_latin_hints_compute_segments() local 1576 FT_Pos prev_min_pos = min_pos; in af_latin_hints_compute_segments() 1617 if ( u < min_pos ) in af_latin_hints_compute_segments() 1618 min_pos = u; in af_latin_hints_compute_segments() 1657 segment->pos = (FT_Short)( ( min_pos + max_pos ) >> 1 ); in af_latin_hints_compute_segments() 1658 segment->delta = (FT_Short)( ( max_pos - min_pos ) >> 1 ); in af_latin_hints_compute_segments() 1672 prev_min_pos = min_pos; in af_latin_hints_compute_segments() 1696 if ( prev_min_pos < min_pos ) in af_latin_hints_compute_segments() 1697 min_pos = prev_min_pos; in af_latin_hints_compute_segments() 1718 prev_segment->pos = (FT_Short)( ( min_pos + in af_latin_hints_compute_segments() [all …]
|
/external/libxcam/cl_kernel/ |
D | kernel_fisheye.cl | 50 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/ |
D | file_stream.cc | 404 const off64_t min_pos = 0; in GetPosition() local 405 return std::max(min_pos, pos); in GetPosition()
|
/external/webp/src/enc/ |
D | backward_references_enc.c | 313 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/ |
D | inet6.py | 1135 min_pos = 0 1140 min_pos = 0 1142 res.append(l[min_pos]) 1143 del(l[min_pos])
|
/external/python/cpython2/Lib/test/ |
D | test_io.py | 2402 def test_seek_and_tell_with_data(data, min_pos=0): argument 2413 for i in range(min_pos, len(decoded) + 1): # seek positions 2437 min_pos = offset*2 2438 test_seek_and_tell_with_data(prefix + input, min_pos)
|
/external/python/cpython3/Lib/test/ |
D | test_io.py | 2946 def test_seek_and_tell_with_data(data, min_pos=0): argument 2957 for i in range(min_pos, len(decoded) + 1): # seek positions 2981 min_pos = offset*2 2982 test_seek_and_tell_with_data(prefix + input, min_pos)
|
/external/freetype/ |
D | ChangeLog.27 | 2028 `max_pos' is always larger than `min_pos' so `FT_ABS' is not needed.
|