Home
last modified time | relevance | path

Searched refs:STORE (Results 1 – 25 of 43) sorted by relevance

12

/external/openssl/crypto/store/
Dstore.h65 #error STORE is disabled.
89 STORE *STORE_new_method(const STORE_METHOD *method);
90 STORE *STORE_new_engine(ENGINE *engine);
91 void STORE_free(STORE *ui);
97 int STORE_ctrl(STORE *store, int cmd, long i, void *p, void (*f)(void));
117 int STORE_set_ex_data(STORE *r,int idx,void *arg);
118 void *STORE_get_ex_data(STORE *r, int idx);
121 const STORE_METHOD *STORE_get_method(STORE *store);
122 const STORE_METHOD *STORE_set_method(STORE *store, const STORE_METHOD *meth);
236 X509 *STORE_get_certificate(STORE *e, OPENSSL_ITEM attributes[],
[all …]
Dstr_mem.c110 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,
125 static void *mem_list_start(STORE *s, STORE_OBJECT_TYPES type,
127 static STORE_OBJECT *mem_list_next(STORE *s, void *handle);
128 static int mem_list_end(STORE *s, void *handle);
[all …]
Dstr_lib.c105 STORE *STORE_new_method(const STORE_METHOD *method) in STORE_new_method()
107 STORE *ret; in STORE_new_method()
115 ret=(STORE *)OPENSSL_malloc(sizeof(STORE)); in STORE_new_method()
133 STORE *STORE_new_engine(ENGINE *engine) in STORE_new_engine()
135 STORE *ret = NULL; in STORE_new_engine()
181 void STORE_free(STORE *store) in STORE_free()
191 int STORE_ctrl(STORE *store, int cmd, long i, void *p, void (*f)(void)) in STORE_ctrl()
212 int STORE_set_ex_data(STORE *r, int idx, void *arg) in STORE_set_ex_data()
217 void *STORE_get_ex_data(STORE *r, int idx) in STORE_get_ex_data()
222 const STORE_METHOD *STORE_get_method(STORE *store) in STORE_get_method()
[all …]
DREADME1 The STORE type
4 A STORE, as defined in this code section, is really a rather simple
7 the particular implementation of a STORE. It has some support for
23 The intention is that a STORE should be able to store everything
60 The functions that are supported through the STORE type are these:
/external/e2fsprogs/lib/ext2fs/
Dicount.c665 #define STORE 0x02 macro
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 },
705 { STORE, 3, 3, 3 },
[all …]
/external/bison/lib/
Dquotearg.c200 #define STORE(c) \ in quotearg_buffer_restyled() macro
212 STORE ('"'); in quotearg_buffer_restyled()
248 STORE (*quote_string); in quotearg_buffer_restyled()
256 STORE ('\''); in quotearg_buffer_restyled()
274 STORE ('\\'); in quotearg_buffer_restyled()
282 STORE ('\\'); in quotearg_buffer_restyled()
283 STORE ('0'); in quotearg_buffer_restyled()
284 STORE ('0'); in quotearg_buffer_restyled()
306 STORE ('?'); in quotearg_buffer_restyled()
307 STORE ('\\'); in quotearg_buffer_restyled()
[all …]
/external/llvm/include/llvm/CodeGen/
DSlotIndexes.h86 enum Slot { LOAD, USE, DEF, STORE, NUM };
211 return getSlot() == STORE;
249 return SlotIndex(&entry(), SlotIndex::STORE);
260 if (s == SlotIndex::STORE) {
281 return SlotIndex(entry().getPrev(), SlotIndex::STORE);
DISDOpcodes.h458 LOAD, STORE, enumerator
DSelectionDAGNodes.h948 return getOperand(getOpcode() == ISD::STORE ? 2 : 1);
957 N->getOpcode() == ISD::STORE ||
1555 N->getOpcode() == ISD::STORE;
1597 : LSBaseSDNode(ISD::STORE, dl, ChainValuePtrOff, 4,
1617 return N->getOpcode() == ISD::STORE;
DLiveInterval.h218 STORE = 3,
/external/webkit/Tools/DumpRenderTree/mac/PerlSupport/
DDumpRenderTreeSupportPregenerated.pm32 sub STORE { subroutine
/external/webp/src/dec/
Ddsp.c58 #define STORE(x, y, v) \ macro
95 STORE(0, 0, a + d); in TransformOne()
96 STORE(1, 0, b + c); in TransformOne()
97 STORE(2, 0, b - c); in TransformOne()
98 STORE(3, 0, a - d); in TransformOne()
122 STORE(i, j, DC); in TransformDC()
134 #undef STORE
/external/webp/src/enc/
Ddsp.c93 #define STORE(x, y, v) \ macro
125 STORE(0, i, a + d); in ITransformOne()
126 STORE(1, i, b + c); in ITransformOne()
127 STORE(2, i, b - c); in ITransformOne()
128 STORE(3, i, a - d); in ITransformOne()
227 #undef STORE
/external/openssl/crypto/
Dossl_typ.h161 typedef struct store_st STORE; typedef
/external/openssl/include/openssl/
Dossl_typ.h161 typedef struct store_st STORE; typedef
/external/openssl/crypto/err/
Dopenssl.ec33 L STORE crypto/store/store.h crypto/store/str_err.c
/external/oprofile/events/ia64/itanium2/
Dunit_masks370 0xb STORE
450 0x2 STORE
/external/llvm/lib/Target/XCore/
DXCoreISelLowering.cpp136 setOperationAction(ISD::STORE, MVT::i32, Custom); in XCoreTargetLowering()
157 setTargetDAGCombine(ISD::STORE); in XCoreTargetLowering()
173 case ISD::STORE: return LowerSTORE(Op, DAG); in LowerOperation()
1468 case ISD::STORE: { in PerformDAGCombine()
/external/llvm/lib/Target/Mips/
DMipsISelDAGToDAG.cpp439 case ISD::STORE: in Select()
/external/icu4c/test/testdata/
DDataDrivenCollationTest.txt352 "'STORE VILDMOSE'<"
/external/llvm/lib/Target/CellSPU/
DSPUISelDAGToDAG.cpp517 if (OpOpc == ISD::STORE || OpOpc == ISD::LOAD) { in DFormAddressPredicate()
521 Offs = ((OpOpc == ISD::STORE) ? Op->getOperand(3) : Op->getOperand(2)); in DFormAddressPredicate()
DSPUISelLowering.cpp140 setOperationAction(ISD::STORE, VT, Custom); in SPUTargetLowering()
156 setOperationAction(ISD::STORE, VT, Custom); in SPUTargetLowering()
415 setOperationAction(ISD::STORE, VT, Custom); in SPUTargetLowering()
2789 case ISD::STORE: in LowerOperation()
/external/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp1103 case ISD::STORE: return visitSTORE(N); in visit()
5955 (Use->getOpcode() == ISD::STORE && in CombineToPreIndexedLoadStore()
6078 (UseUse->getOpcode() == ISD::STORE && in CombineToPostIndexedLoadStore()
6538 !TLI.isOperationLegal(ISD::STORE, IntVT) || in TransformFPLoadStorePair()
6540 !TLI.isDesirableToTransformToIntegerOp(ISD::STORE, VT)) in TransformFPLoadStorePair()
6588 TLI.isOperationLegalOrCustom(ISD::STORE, SVT))) in visitSTORE()
6614 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) { in visitSTORE()
6625 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i64)) { in visitSTORE()
6634 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) { in visitSTORE()
7898 case ISD::STORE: { in GatherAllAliases()
DLegalizeFloatTypes.cpp585 case ISD::STORE: Res = SoftenFloatOp_STORE(N, OpNo); break; in SoftenFloatOperand()
1264 case ISD::STORE: Res = ExpandFloatOp_STORE(cast<StoreSDNode>(N), in ExpandFloatOperand()
/external/llvm/include/llvm/Target/
DTargetSelectionDAG.td429 def st : SDNode<"ISD::STORE" , SDTStore,
431 def ist : SDNode<"ISD::STORE" , SDTIStore,

12