Home
last modified time | relevance | path

Searched refs:n_pad (Results 1 – 25 of 37) sorted by relevance

12

/dports/security/gnome-keyring/gnome-keyring-40.0/egg/
H A Degg-padding.c113 gsize n_pad; in egg_padding_zero_pad() local
146 gsize n_pad; in egg_padding_pkcs1_pad_01() local
160 g_assert (n_pad >= 3); in egg_padding_pkcs1_pad_01()
172 pad[n_pad - 1] = 0; in egg_padding_pkcs1_pad_01()
184 gsize n_pad; in egg_padding_pkcs1_pad_02() local
210 pad[n_pad - 1] = 0; in egg_padding_pkcs1_pad_02()
236 gsize n_pad; in egg_padding_pkcs7_pad() local
244 g_assert (n_pad > 0 && n_pad <= block); in egg_padding_pkcs7_pad()
254 memset (pad + n_raw, n_pad, n_pad); in egg_padding_pkcs7_pad()
265 gsize n_pad, i; in egg_padding_pkcs7_unpad() local
[all …]
/dports/security/gcr/gcr-3.40.0/egg/
H A Degg-padding.c112 gsize n_pad; in egg_padding_zero_pad() local
145 gsize n_pad; in egg_padding_pkcs1_pad_01() local
159 g_assert (n_pad >= 3); in egg_padding_pkcs1_pad_01()
171 pad[n_pad - 1] = 0; in egg_padding_pkcs1_pad_01()
183 gsize n_pad; in egg_padding_pkcs1_pad_02() local
209 pad[n_pad - 1] = 0; in egg_padding_pkcs1_pad_02()
235 gsize n_pad; in egg_padding_pkcs7_pad() local
243 g_assert (n_pad > 0 && n_pad <= block); in egg_padding_pkcs7_pad()
253 memset (pad + n_raw, n_pad, n_pad); in egg_padding_pkcs7_pad()
264 gsize n_pad, i; in egg_padding_pkcs7_unpad() local
[all …]
/dports/graphics/py-scikit-image/scikit-image-0.19.0/skimage/util/
H A D_montage.py126 n_pad = padding_width
127 arr_out = np.empty(((n_rows + n_pad) * ntiles_row + n_pad,
128 (n_cols + n_pad) * ntiles_col + n_pad,
133 slices_row = [slice(n_pad + (n_rows + n_pad) * n,
134 n_pad + (n_rows + n_pad) * n + n_rows)
136 slices_col = [slice(n_pad + (n_cols + n_pad) * n,
137 n_pad + (n_cols + n_pad) * n + n_cols)
/dports/security/libsecret/libsecret-0.20.4/libsecret/
H A Dsecret-session.c355 gsize n_pad, i; in pkcs7_unpad_bytes_in_place() local
360 n_pad = padded[*n_padded - 1]; in pkcs7_unpad_bytes_in_place()
363 if (n_pad == 0 || n_pad > 16) in pkcs7_unpad_bytes_in_place()
365 if (n_pad > *n_padded) in pkcs7_unpad_bytes_in_place()
367 for (i = *n_padded - n_pad; i < *n_padded; ++i) { in pkcs7_unpad_bytes_in_place()
368 if (padded[i] != n_pad) in pkcs7_unpad_bytes_in_place()
373 *n_padded -= n_pad; in pkcs7_unpad_bytes_in_place()
524 gsize n_pad; in pkcs7_pad_bytes_in_secure_memory() local
531 n_pad = *n_padded - length; in pkcs7_pad_bytes_in_secure_memory()
532 g_assert (n_pad > 0 && n_pad <= 16); in pkcs7_pad_bytes_in_secure_memory()
[all …]
/dports/security/libgnome-keyring/libgnome-keyring-3.12.0/library/
H A Dgkr-session.c52 gsize length, n_pad; in pkcs7_pad_string_in_secure_memory() local
64 n_pad = *n_padded - length; in pkcs7_pad_string_in_secure_memory()
65 g_assert (n_pad > 0 && n_pad <= 16); in pkcs7_pad_string_in_secure_memory()
68 memset (padded + length, n_pad, n_pad); in pkcs7_pad_string_in_secure_memory()
75 gsize n_pad, i; in pkcs7_unpad_string_in_place() local
80 n_pad = padded[n_padded - 1]; in pkcs7_unpad_string_in_place()
83 if (n_pad == 0 || n_pad > 16) in pkcs7_unpad_string_in_place()
85 if (n_pad > n_padded) in pkcs7_unpad_string_in_place()
87 for (i = n_padded - n_pad; i < n_padded; ++i) { in pkcs7_unpad_string_in_place()
88 if (padded[i] != n_pad) in pkcs7_unpad_string_in_place()
[all …]
/dports/graphics/gmt/gmt-6.3.0/src/
H A Dgmt_nc.c1143 assert (n_cols > n_pad[XLO] + n_pad[XHI] && n_rows > n_pad[YLO] + n_pad[YHI] && in gmtnc_padding_copy()
1144 n_pad[XLO] + n_pad[XHI] + n_pad[YLO] + n_pad[YHI] > 0 && cell_size > 0); in gmtnc_padding_copy()
1215 assert (n_cols > n_pad[XLO] + n_pad[XHI] && n_rows > n_pad[YLO] + n_pad[YHI] && in gmtnc_padding_zero()
1216 n_pad[XLO] + n_pad[XHI] + n_pad[YLO] + n_pad[YHI] > 0 && cell_size > 0); in gmtnc_padding_zero()
1253 size_t n_new_cols = n_cols_t + n_pad[XLO] + n_pad[XHI]; in gmtnc_pad_grid()
1258 n_pad[XLO], n_pad[XHI], n_pad[YLO], n_pad[YHI]); in gmtnc_pad_grid()
1260 if (n_pad[XLO] + n_pad[XHI] + n_pad[YLO] + n_pad[YHI] == 0) in gmtnc_pad_grid()
1266 if (n_pad[XLO] + n_pad[XHI] + n_pad[YHI] != 0) { in gmtnc_pad_grid()
1301 size_t n_old_cols = n_cols + n_pad[XLO] + n_pad[XHI]; in gmtnc_unpad_grid()
1307 n_pad[XLO], n_pad[XHI], n_pad[YLO], n_pad[YHI]); in gmtnc_unpad_grid()
[all …]
/dports/japanese/w3m/w3m-2b59b9e/
H A Dmimehead.c80 int i, n_pad; in decodeB_to_growbuf() local
83 n_pad = 0; in decodeB_to_growbuf()
96 n_pad++; in decodeB_to_growbuf()
99 n_pad++; in decodeB_to_growbuf()
112 for (i = 0; i < 3 - n_pad; i++) { in decodeB_to_growbuf()
115 if (n_pad || *wp == '\0' || *wp == '?') in decodeB_to_growbuf()
/dports/japanese/w3m-img/w3m-2b59b9e/
H A Dmimehead.c80 int i, n_pad; in decodeB_to_growbuf() local
83 n_pad = 0; in decodeB_to_growbuf()
96 n_pad++; in decodeB_to_growbuf()
99 n_pad++; in decodeB_to_growbuf()
112 for (i = 0; i < 3 - n_pad; i++) { in decodeB_to_growbuf()
115 if (n_pad || *wp == '\0' || *wp == '?') in decodeB_to_growbuf()
/dports/www/w3m-img/w3m-2b59b9e/
H A Dmimehead.c80 int i, n_pad; in decodeB_to_growbuf() local
83 n_pad = 0; in decodeB_to_growbuf()
96 n_pad++; in decodeB_to_growbuf()
99 n_pad++; in decodeB_to_growbuf()
112 for (i = 0; i < 3 - n_pad; i++) { in decodeB_to_growbuf()
115 if (n_pad || *wp == '\0' || *wp == '?') in decodeB_to_growbuf()
/dports/www/w3m/w3m-2b59b9e/
H A Dmimehead.c80 int i, n_pad; in decodeB_to_growbuf() local
83 n_pad = 0; in decodeB_to_growbuf()
96 n_pad++; in decodeB_to_growbuf()
99 n_pad++; in decodeB_to_growbuf()
112 for (i = 0; i < 3 - n_pad; i++) { in decodeB_to_growbuf()
115 if (n_pad || *wp == '\0' || *wp == '?') in decodeB_to_growbuf()
/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/tvm/python/tvm/topi/x86/
H A Dconv1d.py57 n_pad, c_pad, w_pad = data_pad.op.axis
58 pad_fused = s[data_pad].fuse(n_pad, c_pad)
111 n_pad, w_pad, c_pad = data_pad.op.axis
112 pad_fused = s[data_pad].fuse(n_pad, w_pad)
/dports/print/hp2xx/hp2xx-3.4.4/sources/
H A Dto_pic.c112 int i, j, n_pad = 0, n_wr = BYTES_PER_LINE; local
117 n_pad = (nb / BYTES_PER_LINE + 1) * BYTES_PER_LINE - nb;
123 for (i--, j = 0; j < n_pad; j++) /* Fill last block with zero */
/dports/misc/amanda-server/amanda-3.3.9/ndmp-src/
H A Dndma_tape.c389 int n_pad = count - n_ready; in ndmta_read_quantum() local
393 while (n_pad > 0) { in ndmta_read_quantum()
399 if (n_avail > n_pad) in ndmta_read_quantum()
400 n_avail = n_pad; in ndmta_read_quantum()
403 n_pad -= n_avail; in ndmta_read_quantum()
/dports/misc/amanda-client/amanda-3.3.9/ndmp-src/
H A Dndma_tape.c389 int n_pad = count - n_ready; in ndmta_read_quantum() local
393 while (n_pad > 0) { in ndmta_read_quantum()
399 if (n_avail > n_pad) in ndmta_read_quantum()
400 n_avail = n_pad; in ndmta_read_quantum()
403 n_pad -= n_avail; in ndmta_read_quantum()
/dports/sysutils/bareos19-traymonitor/bareos-Release-19.2.11/core/src/ndmp/
H A Dndma_tape.c388 int n_pad = count - n_ready; in ndmta_read_quantum() local
392 while (n_pad > 0) { in ndmta_read_quantum()
397 if (n_avail > n_pad) n_avail = n_pad; in ndmta_read_quantum()
400 n_pad -= n_avail; in ndmta_read_quantum()
/dports/sysutils/bareos19-server/bareos-Release-19.2.11/core/src/ndmp/
H A Dndma_tape.c388 int n_pad = count - n_ready; in ndmta_read_quantum() local
392 while (n_pad > 0) { in ndmta_read_quantum()
397 if (n_avail > n_pad) n_avail = n_pad; in ndmta_read_quantum()
400 n_pad -= n_avail; in ndmta_read_quantum()
/dports/sysutils/bareos19-client/bareos-Release-19.2.11/core/src/ndmp/
H A Dndma_tape.c388 int n_pad = count - n_ready; in ndmta_read_quantum() local
392 while (n_pad > 0) { in ndmta_read_quantum()
397 if (n_avail > n_pad) n_avail = n_pad; in ndmta_read_quantum()
400 n_pad -= n_avail; in ndmta_read_quantum()
/dports/sysutils/bareos-client/bareos-Release-20.0.3/core/src/ndmp/
H A Dndma_tape.c388 int n_pad = count - n_ready; in ndmta_read_quantum() local
392 while (n_pad > 0) { in ndmta_read_quantum()
397 if (n_avail > n_pad) n_avail = n_pad; in ndmta_read_quantum()
400 n_pad -= n_avail; in ndmta_read_quantum()
/dports/sysutils/bareos-traymonitor/bareos-Release-20.0.3/core/src/ndmp/
H A Dndma_tape.c388 int n_pad = count - n_ready; in ndmta_read_quantum() local
392 while (n_pad > 0) { in ndmta_read_quantum()
397 if (n_avail > n_pad) n_avail = n_pad; in ndmta_read_quantum()
400 n_pad -= n_avail; in ndmta_read_quantum()
/dports/sysutils/bareos18-traymonitor/bareos-Release-18.2.12/core/src/ndmp/
H A Dndma_tape.c416 int n_pad = count - n_ready; in ndmta_read_quantum() local
420 while (n_pad > 0) { in ndmta_read_quantum()
426 if (n_avail > n_pad) in ndmta_read_quantum()
427 n_avail = n_pad; in ndmta_read_quantum()
430 n_pad -= n_avail; in ndmta_read_quantum()
/dports/sysutils/bareos-server/bareos-Release-20.0.3/core/src/ndmp/
H A Dndma_tape.c388 int n_pad = count - n_ready; in ndmta_read_quantum() local
392 while (n_pad > 0) { in ndmta_read_quantum()
397 if (n_avail > n_pad) n_avail = n_pad; in ndmta_read_quantum()
400 n_pad -= n_avail; in ndmta_read_quantum()
/dports/sysutils/bareos18-server/bareos-Release-18.2.12/core/src/ndmp/
H A Dndma_tape.c416 int n_pad = count - n_ready; in ndmta_read_quantum() local
420 while (n_pad > 0) { in ndmta_read_quantum()
426 if (n_avail > n_pad) in ndmta_read_quantum()
427 n_avail = n_pad; in ndmta_read_quantum()
430 n_pad -= n_avail; in ndmta_read_quantum()
/dports/sysutils/bareos18-client/bareos-Release-18.2.12/core/src/ndmp/
H A Dndma_tape.c416 int n_pad = count - n_ready; in ndmta_read_quantum() local
420 while (n_pad > 0) { in ndmta_read_quantum()
426 if (n_avail > n_pad) in ndmta_read_quantum()
427 n_avail = n_pad; in ndmta_read_quantum()
430 n_pad -= n_avail; in ndmta_read_quantum()
/dports/www/bareos18-webui/bareos-Release-18.2.12/core/src/ndmp/
H A Dndma_tape.c416 int n_pad = count - n_ready; in ndmta_read_quantum() local
420 while (n_pad > 0) { in ndmta_read_quantum()
426 if (n_avail > n_pad) in ndmta_read_quantum()
427 n_avail = n_pad; in ndmta_read_quantum()
430 n_pad -= n_avail; in ndmta_read_quantum()
/dports/www/bareos-webui/bareos-Release-20.0.3/core/src/ndmp/
H A Dndma_tape.c388 int n_pad = count - n_ready; in ndmta_read_quantum() local
392 while (n_pad > 0) { in ndmta_read_quantum()
397 if (n_avail > n_pad) n_avail = n_pad; in ndmta_read_quantum()
400 n_pad -= n_avail; in ndmta_read_quantum()

12