Home
last modified time | relevance | path

Searched refs:tin (Results 1 – 19 of 19) sorted by relevance

/external/openssl/crypto/des/
Dede_cbcm_enc.c84 DES_LONG tin[2]; in DES_ede3_cbcm_encrypt() local
98 tin[0]=m0; in DES_ede3_cbcm_encrypt()
99 tin[1]=m1; in DES_ede3_cbcm_encrypt()
100 DES_encrypt1(tin,ks3,1); in DES_ede3_cbcm_encrypt()
101 m0=tin[0]; in DES_ede3_cbcm_encrypt()
102 m1=tin[1]; in DES_ede3_cbcm_encrypt()
116 tin[0]=tin0; in DES_ede3_cbcm_encrypt()
117 tin[1]=tin1; in DES_ede3_cbcm_encrypt()
118 DES_encrypt1(tin,ks1,1); in DES_ede3_cbcm_encrypt()
119 tin[0]^=m0; in DES_ede3_cbcm_encrypt()
[all …]
Dncbc_enc.c77 DES_LONG tin[2]; in DES_cbc_encrypt() local
90 tin0^=tout0; tin[0]=tin0; in DES_cbc_encrypt()
91 tin1^=tout1; tin[1]=tin1; in DES_cbc_encrypt()
92 DES_encrypt1((DES_LONG *)tin,_schedule,DES_ENCRYPT); in DES_cbc_encrypt()
93 tout0=tin[0]; l2c(tout0,out); in DES_cbc_encrypt()
94 tout1=tin[1]; l2c(tout1,out); in DES_cbc_encrypt()
99 tin0^=tout0; tin[0]=tin0; in DES_cbc_encrypt()
100 tin1^=tout1; tin[1]=tin1; in DES_cbc_encrypt()
101 DES_encrypt1((DES_LONG *)tin,_schedule,DES_ENCRYPT); in DES_cbc_encrypt()
102 tout0=tin[0]; l2c(tout0,out); in DES_cbc_encrypt()
[all …]
Dxcbc_enc.c122 DES_LONG tin[2]; in DES_xcbc_encrypt() local
142 tin0^=tout0^inW0; tin[0]=tin0; in DES_xcbc_encrypt()
143 tin1^=tout1^inW1; tin[1]=tin1; in DES_xcbc_encrypt()
144 DES_encrypt1(tin,schedule,DES_ENCRYPT); in DES_xcbc_encrypt()
145 tout0=tin[0]^outW0; l2c(tout0,out); in DES_xcbc_encrypt()
146 tout1=tin[1]^outW1; l2c(tout1,out); in DES_xcbc_encrypt()
151 tin0^=tout0^inW0; tin[0]=tin0; in DES_xcbc_encrypt()
152 tin1^=tout1^inW1; tin[1]=tin1; in DES_xcbc_encrypt()
153 DES_encrypt1(tin,schedule,DES_ENCRYPT); in DES_xcbc_encrypt()
154 tout0=tin[0]^outW0; l2c(tout0,out); in DES_xcbc_encrypt()
[all …]
Dpcbc_enc.c66 DES_LONG tin[2]; in DES_pcbc_encrypt() local
87 tin[0]=sin0^xor0; in DES_pcbc_encrypt()
88 tin[1]=sin1^xor1; in DES_pcbc_encrypt()
89 DES_encrypt1((DES_LONG *)tin,schedule,DES_ENCRYPT); in DES_pcbc_encrypt()
90 tout0=tin[0]; in DES_pcbc_encrypt()
91 tout1=tin[1]; in DES_pcbc_encrypt()
105 tin[0]=sin0; in DES_pcbc_encrypt()
106 tin[1]=sin1; in DES_pcbc_encrypt()
107 DES_encrypt1((DES_LONG *)tin,schedule,DES_DECRYPT); in DES_pcbc_encrypt()
108 tout0=tin[0]^xor0; in DES_pcbc_encrypt()
[all …]
Ddes_enc.c298 DES_LONG tin[2]; in DES_ede3_cbc_encrypt() local
316 tin[0]=tin0; in DES_ede3_cbc_encrypt()
317 tin[1]=tin1; in DES_ede3_cbc_encrypt()
318 DES_encrypt3((DES_LONG *)tin,ks1,ks2,ks3); in DES_ede3_cbc_encrypt()
319 tout0=tin[0]; in DES_ede3_cbc_encrypt()
320 tout1=tin[1]; in DES_ede3_cbc_encrypt()
331 tin[0]=tin0; in DES_ede3_cbc_encrypt()
332 tin[1]=tin1; in DES_ede3_cbc_encrypt()
333 DES_encrypt3((DES_LONG *)tin,ks1,ks2,ks3); in DES_ede3_cbc_encrypt()
334 tout0=tin[0]; in DES_ede3_cbc_encrypt()
[all …]
Dcbc_cksm.c67 DES_LONG tin[2]; in DES_cbc_cksum() local
83 tin0^=tout0; tin[0]=tin0; in DES_cbc_cksum()
84 tin1^=tout1; tin[1]=tin1; in DES_cbc_cksum()
85 DES_encrypt1((DES_LONG *)tin,schedule,DES_ENCRYPT); in DES_cbc_cksum()
87 tout0=tin[0]; in DES_cbc_cksum()
88 tout1=tin[1]; in DES_cbc_cksum()
95 tout0=tin0=tin1=tin[0]=tin[1]=0; in DES_cbc_cksum()
/external/openssl/crypto/rc2/
Drc2_cbc.c68 unsigned long tin[2]; in RC2_cbc_encrypt() local
81 tin[0]=tin0; in RC2_cbc_encrypt()
82 tin[1]=tin1; in RC2_cbc_encrypt()
83 RC2_encrypt(tin,ks); in RC2_cbc_encrypt()
84 tout0=tin[0]; l2c(tout0,out); in RC2_cbc_encrypt()
85 tout1=tin[1]; l2c(tout1,out); in RC2_cbc_encrypt()
92 tin[0]=tin0; in RC2_cbc_encrypt()
93 tin[1]=tin1; in RC2_cbc_encrypt()
94 RC2_encrypt(tin,ks); in RC2_cbc_encrypt()
95 tout0=tin[0]; l2c(tout0,out); in RC2_cbc_encrypt()
[all …]
/external/openssl/crypto/bf/
Dbf_enc.c230 BF_LONG tin[2]; in BF_cbc_encrypt() local
243 tin[0]=tin0; in BF_cbc_encrypt()
244 tin[1]=tin1; in BF_cbc_encrypt()
245 BF_encrypt(tin,schedule); in BF_cbc_encrypt()
246 tout0=tin[0]; in BF_cbc_encrypt()
247 tout1=tin[1]; in BF_cbc_encrypt()
256 tin[0]=tin0; in BF_cbc_encrypt()
257 tin[1]=tin1; in BF_cbc_encrypt()
258 BF_encrypt(tin,schedule); in BF_cbc_encrypt()
259 tout0=tin[0]; in BF_cbc_encrypt()
[all …]
/external/bluetooth/glib/po/
Dvi.po45 msgstr "Không tìm thấy tập tin liên kết lưu hợp lệ trong các thư mục dữ liệu"
126 "URI « %s » không phải là một URI tuyệt đối sử dụng lược đồ « file » (tập tin)"
131 msgstr "Không cho phép URI tập tin cục bộ « %s » chứa dấu thăng « # »"
165 msgstr "Không thẻ cấp phát %lu byte để đọc tập tin « %s »"
170 msgstr "Gặp lỗi khi đọc tập tin « %s »: %s"
175 msgstr "Tập tin \"%s\" quá lớn"
180 msgstr "Lỗi đọc từ tập tin « %s »: %s"
185 msgstr "Lỗi mở tập tin « %s »: %s"
190 msgstr "Lỗi lấy các thuộc tính của tập tin « %s »: lỗi « fstat() »: %s"
195 msgstr "Lỗi mở tập tin « %s »: lỗi « fdopen() »: %s"
[all …]
Daz.po4 # Mətin Əmirov <metin@karegen.com>, 2004.
12 "Last-Translator: Mətin Əmirov <metin@karegen.com>\n"
DChangeLog3775 2004-02-05 Mətin Əmirov <metin@karegen.com>
/external/e2fsprogs/po/
Dvi.po85 msgstr "trong khi kiểm tra sự đúng mực nút thông tin khối hỏng"
89 msgstr "trong khi đọc nút thông tin khối hỏng"
107 msgstr "trong khi đọc vào danh sách các khối hỏng từ tập tin"
111 msgstr "trong khi cập nhật nút thông tin khối hỏng"
116 msgstr "Cảnh báo : tìm thấy khối cấm %u trong nút thông tin khối hỏng nên bị xoá.\n"
157 msgstr "Khối thư mục rỗng %u (#%d) trong nút thông tin %u\n"
162 msgstr "%s: %s tên tập tin số khối cỡ khối\n"
190 "[KĐN: các khối đệm nút thông tin]\n"
205 msgstr "trong khi mở việc quét nút thông tin"
209 msgstr "trong khi lấy nút thông tin kế tiếp"
[all …]
/external/webkit/WebKit/gtk/po/
Dvi.po19 msgstr "Tải tập tin lên"
85 msgstr "URI đích nơi lưu tập tin"
89 msgstr "Tên tập tin đề nghị"
93 msgstr "Tên tập tin đề nghị mặc định khi lưu"
125 msgstr "Kích thước của toàn bộ tập tin"
540 msgstr "Chọn tập tin"
552 msgstr "_Tải tập tin được liên kết"
688 msgstr " tập tin"
/external/elfutils/
DABOUT-NLS233 tin | () () |
336 tin | [] () |
439 tin | |
542 tin | | 1
/external/bison/
DABOUT-NLS270 tin | () () |
373 tin | [] () |
476 tin | |
579 tin | | 1
/external/tcpdump/
DCREDITS100 Michele "mydecay" Marchetto <smarchetto1@tin.it>
/external/svox/pico/tests/data/
Dxsampa_pico_man_en-US.txt34 # TEST "tin"
Dxsampa_pico_man_en-GB.txt33 # TEST "tin"
/external/srec/config/en.us/dictionary/
Dlarge.ok1331 argentinians orj~tin/~z
18173 matinicus m@tin@k@s
29403 tin tin