Searched refs:window_size (Results 1 – 6 of 6) sorted by relevance
/device/google/contexthub/firmware/os/algos/ |
D | time_sync.c | 35 void time_sync_truncate(time_sync_t *sync, size_t window_size) { in time_sync_truncate() argument 37 sync->n = (window_size < sync->n) ? window_size : sync->n; in time_sync_truncate()
|
/device/google/contexthub/firmware/os/inc/algos/ |
D | time_sync.h | 49 void time_sync_truncate(time_sync_t *sync, size_t window_size);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/ |
D | deflate.c | 1109 s->window_size = (ulg)2L*s->w_size; 1193 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead"); 1234 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan"); 1266 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan"); 1311 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead"); 1340 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan"); 1401 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart); 1503 if (s->high_water < s->window_size) { 1511 init = s->window_size - curr; 1523 if (init > s->window_size - s->high_water) [all …]
|
D | deflate.h | 126 ulg window_size; member
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
D | deflate.c | 989 s->window_size = (ulg)2L*s->w_size; 1072 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead"); 1113 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan"); 1145 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan"); 1189 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead"); 1218 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan"); 1275 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
|
D | deflate.h | 123 ulg window_size; member
|