Searched refs:store (Results 1 - 25 of 835) sorted by last modified time

1234567891011>>

/external/zopfli/src/zopfli/
H A Dblocksplitter.c292 ZopfliLZ77Store store; local
294 ZopfliInitLZ77Store(&store);
308 ZopfliLZ77Greedy(&s, in, instart, inend, &store);
311 store.litlens, store.dists, store.size, maxblocks,
317 for (i = 0; i < store.size; i++) {
318 size_t length = store.dists[i] == 0 ? 1 : store.litlens[i];
329 ZopfliCleanLZ77Store(&store);
[all...]
H A Ddeflate.c593 ZopfliLZ77Store store; local
596 ZopfliInitLZ77Store(&store);
606 ZopfliLZ77Optimal(&s, in, instart, inend, &store);
610 if (store.size < 1000) {
615 dyncost = ZopfliCalculateBlockSize(store.litlens, store.dists,
616 0, store.size, 2);
621 ZopfliCleanLZ77Store(&store);
622 store = fixedstore;
629 store
646 ZopfliLZ77Store store; local
763 ZopfliLZ77Store store; local
[all...]
H A Dlz77.c27 void ZopfliInitLZ77Store(ZopfliLZ77Store* store) { argument
28 store->size = 0;
29 store->litlens = 0;
30 store->dists = 0;
33 void ZopfliCleanLZ77Store(ZopfliLZ77Store* store) { argument
34 free(store->litlens);
35 free(store->dists);
60 ZopfliLZ77Store* store) {
61 size_t size2 = store->size; /* Needed for using ZOPFLI_APPEND_DATA twice. */
62 ZOPFLI_APPEND_DATA(length, &store
59 ZopfliStoreLitLenDist(unsigned short length, unsigned short dist, ZopfliLZ77Store* store) argument
366 ZopfliLZ77Greedy(ZopfliBlockState* s, const unsigned char* in, size_t instart, size_t inend, ZopfliLZ77Store* store) argument
[all...]
H A Dlz77.h51 void ZopfliInitLZ77Store(ZopfliLZ77Store* store);
52 void ZopfliCleanLZ77Store(ZopfliLZ77Store* store);
55 ZopfliLZ77Store* store);
127 ZopfliLZ77Store* store);
H A Dsqueeze.c337 ZopfliLZ77Store* store) {
372 ZopfliStoreLitLenDist(length, dist, store);
376 ZopfliStoreLitLenDist(in[pos], 0, store);
398 /* Appends the symbol statistics from the store. */
399 static void GetStatistics(const ZopfliLZ77Store* store, SymbolStats* stats) { argument
401 for (i = 0; i < store->size; i++) {
402 if (store->dists[i] == 0) {
403 stats->litlens[store->litlens[i]]++;
405 stats->litlens[ZopfliGetLengthSymbol(store->litlens[i])]++;
406 stats->dists[ZopfliGetDistSymbol(store
334 FollowPath(ZopfliBlockState* s, const unsigned char* in, size_t instart, size_t inend, unsigned short* path, size_t pathsize, ZopfliLZ77Store* store) argument
431 LZ77OptimalRun(ZopfliBlockState* s, const unsigned char* in, size_t instart, size_t inend, unsigned short** path, size_t* pathsize, unsigned short* length_array, CostModelFun* costmodel, void* costcontext, ZopfliLZ77Store* store) argument
447 ZopfliLZ77Optimal(ZopfliBlockState *s, const unsigned char* in, size_t instart, size_t inend, ZopfliLZ77Store* store) argument
522 ZopfliLZ77OptimalFixed(ZopfliBlockState *s, const unsigned char* in, size_t instart, size_t inend, ZopfliLZ77Store* store) argument
[all...]
H A Dsqueeze.h43 ZopfliLZ77Store* store);
58 ZopfliLZ77Store* store);
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dtls_openssl.c332 static const CERT_CONTEXT * cryptoapi_find_cert(const char *name, DWORD store) argument
338 store | CERT_STORE_OPEN_EXISTING_FLAG |
341 cryptoapi_error("Failed to open 'My system store'");
484 const char *store; local
492 store = name + 13;
494 wstore = os_malloc((os_strlen(store) + 1) * sizeof(WCHAR));
497 wsprintf(wstore, L"%S", store);
501 cs = CertOpenSystemStore(0, store);
504 wpa_printf(MSG_DEBUG, "%s: failed to open system cert store "
505 "'%s': error=%d", __func__, store,
3029 X509_STORE *store; local
[all...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dhttp_curl.c1042 X509_STORE *store; local
1079 store = SSL_CTX_get_cert_store(s->ctx);
1085 if (X509_STORE_add_cert(store, ctx->peer_issuer) != 1) {
1087 "OpenSSL: Could not add issuer to certificate store\n");
1096 "OpenSSL: Could not add issuer to OCSP responder trust store\n");
1106 "OpenSSL: Could not add issuer to OCSP responder trust store\n");
1113 status = OCSP_basic_verify(basic, certs, store, OCSP_TRUSTOTHER);
/external/wpa_supplicant_8/src/crypto/
H A Dtls_openssl.c332 static const CERT_CONTEXT * cryptoapi_find_cert(const char *name, DWORD store) argument
338 store | CERT_STORE_OPEN_EXISTING_FLAG |
341 cryptoapi_error("Failed to open 'My system store'");
484 const char *store; local
492 store = name + 13;
494 wstore = os_malloc((os_strlen(store) + 1) * sizeof(WCHAR));
497 wsprintf(wstore, L"%S", store);
501 cs = CertOpenSystemStore(0, store);
504 wpa_printf(MSG_DEBUG, "%s: failed to open system cert store "
505 "'%s': error=%d", __func__, store,
3029 X509_STORE *store; local
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dhttp_curl.c1042 X509_STORE *store; local
1079 store = SSL_CTX_get_cert_store(s->ctx);
1085 if (X509_STORE_add_cert(store, ctx->peer_issuer) != 1) {
1087 "OpenSSL: Could not add issuer to certificate store\n");
1096 "OpenSSL: Could not add issuer to OCSP responder trust store\n");
1106 "OpenSSL: Could not add issuer to OCSP responder trust store\n");
1113 status = OCSP_basic_verify(basic, certs, store, OCSP_TRUSTOTHER);
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dtls_openssl.c332 static const CERT_CONTEXT * cryptoapi_find_cert(const char *name, DWORD store) argument
338 store | CERT_STORE_OPEN_EXISTING_FLAG |
341 cryptoapi_error("Failed to open 'My system store'");
484 const char *store; local
492 store = name + 13;
494 wstore = os_malloc((os_strlen(store) + 1) * sizeof(WCHAR));
497 wsprintf(wstore, L"%S", store);
501 cs = CertOpenSystemStore(0, store);
504 wpa_printf(MSG_DEBUG, "%s: failed to open system cert store "
505 "'%s': error=%d", __func__, store,
3029 X509_STORE *store; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dhttp_curl.c1042 X509_STORE *store; local
1079 store = SSL_CTX_get_cert_store(s->ctx);
1085 if (X509_STORE_add_cert(store, ctx->peer_issuer) != 1) {
1087 "OpenSSL: Could not add issuer to certificate store\n");
1096 "OpenSSL: Could not add issuer to OCSP responder trust store\n");
1106 "OpenSSL: Could not add issuer to OCSP responder trust store\n");
1113 status = OCSP_basic_verify(basic, certs, store, OCSP_TRUSTOTHER);
/external/valgrind/main/none/tests/ppc32/
H A Djm-fp.stdout.exp1280 PPC float store insns
1378 PPC float store insns with three register args:
H A Djm-int.stdout.exp1530 PPC integer store insns
1574 PPC integer store insns with three register args:
H A Djm-vmx.stdout.exp1484 Altivec store insns with three register args:
H A Dtest_isa_2_06_part1.stdout.exp1 Test VSX load/store instructions
H A Dtest_isa_2_06_part2.c1690 unsigned long long store, val = 0xdeadbacf12345678ULL; local
1693 r14 = (HWord_t)&store;
1695 printf("0x%llx\n", store);
H A Dtest_isa_2_07_part2.stdout.exp805 Test VSX load/store dp to sp instructions
/external/valgrind/main/none/tests/ppc64/
H A Djm-fp.stdout.exp1382 PPC float store insns
1480 PPC float store insns with three register args:
H A Djm-int.stdout.exp4677 PPC integer store insns
4735 PPC integer store insns with three register args:
H A Djm-vmx.stdout.exp1484 Altivec store insns with three register args:
H A Dtest_isa_2_06_part1.stdout.exp1 Test VSX load/store instructions
H A Dtest_isa_2_06_part2.c1690 unsigned long long store, val = 0xdeadbacf12345678ULL; local
1693 r14 = (HWord_t)&store;
1695 printf("0x%llx\n", store);
H A Dtest_isa_2_07_part2.stdout.exp805 Test VSX load/store dp to sp instructions
/external/valgrind/main/perf/
H A Dtinycc.c1521 #define R_ALPHA_OP_STORE 13 /* OP stack pop and store */
3409 /* fp store */
3866 /* fp store */
4741 /* fp store */
5198 /* fp store */
5801 /* store register 'r' in lvalue 'v' */
5802 void store(int r, SValue *v)
5890 /* generate structure store */
7952 /* return the number of additional 'ints' necessary to store the
10258 /* store registe
5800 void store(int r, SValue *v) function
[all...]

Completed in 1273 milliseconds

1234567891011>>