Searched refs:window (Results 1 – 7 of 7) sorted by relevance
| /optee_os/core/drivers/qcom/ramblur/ |
| H A D | ramblur_pimem_v3.c | 69 static void enable(int window) in enable() argument 72 uint32_t reg = RAMBLUR_WINn_CTL_ADDR(window); in enable() 75 out_dword_masked_ns(reg, mask, val, RAMBLUR_WINn_CTL_INI(window)); in enable() 77 reg = RAMBLUR_WINn_STATUS_ADDR(window); in enable() 85 static void disable_sw_init_mode(int window) in disable_sw_init_mode() argument 88 uint32_t reg = RAMBLUR_WINn_CTL_ADDR(window); in disable_sw_init_mode() 91 out_dword_masked_ns(reg, mask, val, RAMBLUR_WINn_CTL_INI(window)); in disable_sw_init_mode() 95 static void disable(int window) in disable() argument 98 uint32_t reg = RAMBLUR_WINn_CTL_ADDR(window); in disable() 101 out_dword_masked_ns(reg, mask, val, RAMBLUR_WINn_CTL_INI(window)); in disable() [all …]
|
| /optee_os/core/lib/zlib/ |
| H A D | inflate.c | 186 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) { 187 ZFREE(strm, state->window); 188 state->window = Z_NULL; 231 state->window = Z_NULL; 409 if (state->window == Z_NULL) { 410 state->window = (unsigned char FAR *) 413 if (state->window == Z_NULL) return 1; 425 zmemcpy(state->window, end - state->wsize, state->wsize); 432 zmemcpy(state->window + state->wnext, end - copy, dist); 435 zmemcpy(state->window, end - copy, copy); [all …]
|
| H A D | inffast.c | 67 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */ local 94 window = state->window; 200 from = window; 219 from = window;
|
| H A D | inflate.h | 101 unsigned char FAR *window; /* allocated sliding window, if needed */ member
|
| H A D | zlib.h | 1793 unsigned char FAR *window, 1807 # define z_inflateBackInit(strm, windowBits, window) \ argument 1808 inflateBackInit_((strm), (windowBits), (window), \ 1821 # define inflateBackInit(strm, windowBits, window) \ argument 1822 inflateBackInit_((strm), (windowBits), (window), \
|
| /optee_os/lib/libmbedtls/mbedtls/library/ |
| H A D | bignum_core.c | 811 mbedtls_mpi_uint window, in exp_mod_table_lookup_optionally_safe() argument 815 memcpy(Wselect, Wtable + window * AN_limbs, AN_limbs * ciL); in exp_mod_table_lookup_optionally_safe() 825 AN_limbs, welem, window); in exp_mod_table_lookup_optionally_safe() 901 mbedtls_mpi_uint window = 0; in mbedtls_mpi_core_exp_mod_optionally_safe() local 916 window <<= 1; in mbedtls_mpi_core_exp_mod_optionally_safe() 917 window |= (E[E_limb_index] >> E_bit_index) & 1; in mbedtls_mpi_core_exp_mod_optionally_safe() 925 window, E_public); in mbedtls_mpi_core_exp_mod_optionally_safe() 929 window = 0; in mbedtls_mpi_core_exp_mod_optionally_safe()
|
| /optee_os/lib/libmbedtls/mbedtls/ |
| H A D | ChangeLog | 1176 window was reduced from 6 to 2, a value that gives the best or close 1292 victim performing a single private-key operation if the window size used 2572 * Reduce stack usage significantly during sliding window exponentiation.
|