HomeSort by relevance Sort by last modified time
    Searched refs:STORE (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/chromium_org/third_party/openssl/openssl/crypto/store/
str_mem.c 1 /* crypto/store/str_mem.c -*- mode:C; c-file-style: "eay" -*- */
63 /* The memory store is currently highly experimental. It's meant to become
64 a base store used by other stores for internal caching (for full caching
110 static int mem_init(STORE *s);
111 static void mem_clean(STORE *s);
112 static STORE_OBJECT *mem_generate(STORE *s, STORE_OBJECT_TYPES type,
114 static STORE_OBJECT *mem_get(STORE *s, STORE_OBJECT_TYPES type,
116 static int mem_store(STORE *s, STORE_OBJECT_TYPES type,
119 static int mem_modify(STORE *s, STORE_OBJECT_TYPES type,
123 static int mem_delete(STORE *s, STORE_OBJECT_TYPES type
274 struct mem_data_st *store = local
    [all...]
store.h 1 /* crypto/store/store.h -*- mode:C; c-file-style: "eay" -*- */
65 #error STORE is disabled.
80 /* typedef struct store_st STORE; */
89 STORE *STORE_new_method(const STORE_METHOD *method);
90 STORE *STORE_new_engine(ENGINE *engine);
91 void STORE_free(STORE *ui);
96 be used to get information from a STORE. */
97 int STORE_ctrl(STORE *store, int cmd, long i, void *p, void (*f)(void))
    [all...]
str_lib.c 1 /* crypto/store/str_lib.c -*- mode:C; c-file-style: "eay" -*- */
105 STORE *STORE_new_method(const STORE_METHOD *method)
107 STORE *ret;
115 ret=(STORE *)OPENSSL_malloc(sizeof(STORE));
133 STORE *STORE_new_engine(ENGINE *engine)
135 STORE *ret = NULL;
181 void STORE_free(STORE *store)
183 if (store == NULL
    [all...]
  /external/openssl/crypto/store/
str_mem.c 1 /* crypto/store/str_mem.c -*- mode:C; c-file-style: "eay" -*- */
63 /* The memory store is currently highly experimental. It's meant to become
64 a base store used by other stores for internal caching (for full caching
110 static int mem_init(STORE *s);
111 static void mem_clean(STORE *s);
112 static STORE_OBJECT *mem_generate(STORE *s, STORE_OBJECT_TYPES type,
114 static STORE_OBJECT *mem_get(STORE *s, STORE_OBJECT_TYPES type,
116 static int mem_store(STORE *s, STORE_OBJECT_TYPES type,
119 static int mem_modify(STORE *s, STORE_OBJECT_TYPES type,
123 static int mem_delete(STORE *s, STORE_OBJECT_TYPES type
274 struct mem_data_st *store = local
    [all...]
store.h 1 /* crypto/store/store.h -*- mode:C; c-file-style: "eay" -*- */
65 #error STORE is disabled.
80 /* typedef struct store_st STORE; */
89 STORE *STORE_new_method(const STORE_METHOD *method);
90 STORE *STORE_new_engine(ENGINE *engine);
91 void STORE_free(STORE *ui);
96 be used to get information from a STORE. */
97 int STORE_ctrl(STORE *store, int cmd, long i, void *p, void (*f)(void))
    [all...]
str_lib.c 1 /* crypto/store/str_lib.c -*- mode:C; c-file-style: "eay" -*- */
105 STORE *STORE_new_method(const STORE_METHOD *method)
107 STORE *ret;
115 ret=(STORE *)OPENSSL_malloc(sizeof(STORE));
133 STORE *STORE_new_engine(ENGINE *engine)
135 STORE *ret = NULL;
181 void STORE_free(STORE *store)
183 if (store == NULL
    [all...]
  /external/e2fsprogs/lib/ext2fs/
icount.c 34 * one, and then use a sorted list to store the counts for inodes
665 #define STORE 0x02
677 { STORE, 42, 42, 42 },
678 { STORE, 1, 1, 1 },
679 { STORE, 2, 2, 2 },
680 { STORE, 3, 3, 3 },
681 { STORE, 10, 1, 1 },
682 { STORE, 42, 0, 0 },
703 { STORE, 1, 1, 1 },
704 { STORE, 2, 2, 2 }
    [all...]
  /dalvik/vm/compiler/template/mips/
funop.S 22 STORE(v0, rOBJ) # vAA<- v0
funopNarrower.S 25 STORE(v0, rINST) # vA<- v0
fbinop.S 24 STORE(v0, rOBJ) # vAA <- v0
  /external/bison/lib/
quotearg.c 233 If BUFFERSIZE is too small to store the output string, return the
257 #define STORE(c) \
274 STORE ('"');
317 STORE (*quote_string);
330 STORE ('\'');
367 STORE ('\\');
375 STORE ('0');
376 STORE ('0');
410 STORE ('?');
411 STORE ('"');
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
quotearg.c 176 If BUFFERSIZE is too small to store the output string, return the
198 #define STORE(c) \
215 STORE ('"');
253 STORE (*quote_string);
266 STORE ('\'');
291 STORE ('\\');
302 STORE ('\\');
305 STORE ('0');
306 STORE ('0');
336 STORE ('?')
    [all...]
  /external/elfutils/libelf/
gelf_xlate.c 88 #define STORE(Bits, ptr, val) (*(uint##Bits##_t *) ptr = val)
100 #define STORE(Bits, ptr, val) (((union unaligned *) ptr)->u##Bits = val)
119 case 2: STORE (16, dest, bswap_16 (FETCH (16, ptr))); break; \
120 case 4: STORE (32, dest, bswap_32 (FETCH (32, ptr))); break; \
121 case 8: STORE (64, dest, bswap_64 (FETCH (64, ptr))); break; \
  /external/llvm/lib/Target/R600/
AMDGPUISelLowering.cpp 56 // Lower floating point store/load to integer store/load to reduce the number
58 setOperationAction(ISD::STORE, MVT::f32, Promote);
59 AddPromotedToType(ISD::STORE, MVT::f32, MVT::i32);
61 setOperationAction(ISD::STORE, MVT::v2f32, Promote);
62 AddPromotedToType(ISD::STORE, MVT::v2f32, MVT::v2i32);
64 setOperationAction(ISD::STORE, MVT::v4f32, Promote);
65 AddPromotedToType(ISD::STORE, MVT::v4f32, MVT::v4i32);
67 setOperationAction(ISD::STORE, MVT::f64, Promote);
68 AddPromotedToType(ISD::STORE, MVT::f64, MVT::i64)
    [all...]
  /packages/apps/Email/src/com/android/email/mail/store/imap/
ImapConstants.java 17 package com.android.email.mail.store.imap;
19 import com.android.email.mail.Store;
29 = String.format(Locale.US, "BODY.PEEK[]<0.%d>", Store.FETCH_BODY_SANE_SUGGESTED_SIZE);
81 public static final String STORE = "STORE";
89 public static final String UID_STORE = "UID STORE";
  /external/llvm/lib/Target/Mips/
MipsISelDAGToDAG.cpp 65 /// Used on Mips Load/Store instructions
119 case ISD::STORE:
  /external/chromium_org/third_party/libwebp/dsp/
dec.c 61 #define STORE(x, y, v) \
98 STORE(0, 0, a + d);
99 STORE(1, 0, b + c);
100 STORE(2, 0, b - c);
101 STORE(3, 0, a - d);
125 STORE(i, j, DC);
137 #undef STORE
enc.c 87 #define STORE(x, y, v) \
119 STORE(0, i, a + d);
120 STORE(1, i, b + c);
121 STORE(2, i, b - c);
122 STORE(3, i, a - d);
222 #undef STORE
  /external/webp/src/dsp/
dec.c 61 #define STORE(x, y, v) \
98 STORE(0, 0, a + d);
99 STORE(1, 0, b + c);
100 STORE(2, 0, b - c);
101 STORE(3, 0, a - d);
125 STORE(i, j, DC);
137 #undef STORE
enc.c 87 #define STORE(x, y, v) \
119 STORE(0, i, a + d);
120 STORE(1, i, b + c);
121 STORE(2, i, b - c);
122 STORE(3, i, a - d);
222 #undef STORE
  /external/chromium_org/third_party/openssl/openssl/crypto/
ossl_typ.h 163 typedef struct store_st STORE;
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
ossl_typ.h 163 typedef struct store_st STORE;
  /external/llvm/include/llvm/CodeGen/
ISDOpcodes.h 209 /// indicates if an overflow occurred (*not* a flag, because it may be store
452 /// LOAD and STORE have token chains as their first operand, then the same
453 /// operands as an LLVM load/store instruction, then an offset node that
456 LOAD, STORE,
603 /// This corresponds to "store atomic" instruction.
641 /// MemIndexedMode enum - This enum defines the load / store indexed
644 /// UNINDEXED "Normal" load / store. The effective address is already
648 /// load); an unindexed store does not produce a value.
653 /// store operation (i.e. the load / store does the addres
    [all...]
  /external/openssl/crypto/
ossl_typ.h 163 typedef struct store_st STORE;
  /external/openssl/include/openssl/
ossl_typ.h 163 typedef struct store_st STORE;

Completed in 630 milliseconds

1 2 3