Searched refs:STORE (Results 1 - 25 of 44) sorted by relevance

12

/freebsd-11.0-release/crypto/openssl/crypto/store/
H A Dstr_mem.c121 static int mem_init(STORE *s);
122 static void mem_clean(STORE *s);
123 static STORE_OBJECT *mem_generate(STORE *s, STORE_OBJECT_TYPES type,
126 static STORE_OBJECT *mem_get(STORE *s, STORE_OBJECT_TYPES type,
129 static int mem_store(STORE *s, STORE_OBJECT_TYPES type, STORE_OBJECT *data,
131 static int mem_modify(STORE *s, STORE_OBJECT_TYPES type,
137 static int mem_delete(STORE *s, STORE_OBJECT_TYPES type,
139 static void *mem_list_start(STORE *s, STORE_OBJECT_TYPES type,
142 static STORE_OBJECT *mem_list_next(STORE *s, void *handle);
143 static int mem_list_end(STORE *
[all...]
H A Dstore.h66 # error STORE is disabled.
81 /* typedef struct store_st STORE; */
91 STORE *STORE_new_method(const STORE_METHOD *method);
92 STORE *STORE_new_engine(ENGINE *engine);
93 void STORE_free(STORE *ui);
98 * used to get information from a STORE.
100 int STORE_ctrl(STORE *store, int cmd, long i, void *p, void (*f) (void));
128 int STORE_set_ex_data(STORE *r, int idx, void *arg);
129 void *STORE_get_ex_data(STORE *r, int idx);
132 const STORE_METHOD *STORE_get_method(STORE *stor
[all...]
H A Dstr_lib.c103 STORE *STORE_new_method(const STORE_METHOD *method)
105 STORE *ret;
112 ret = (STORE *)OPENSSL_malloc(sizeof(STORE));
128 STORE *STORE_new_engine(ENGINE *engine)
130 STORE *ret = NULL;
168 void STORE_free(STORE *store)
178 int STORE_ctrl(STORE *store, int cmd, long i, void *p, void (*f) (void))
197 int STORE_set_ex_data(STORE *r, int idx, void *arg)
202 void *STORE_get_ex_data(STORE *
[all...]
/freebsd-11.0-release/gnu/usr.bin/grep/
H A Dquotearg.c219 #define STORE(c) \ macro
231 STORE ('"');
262 STORE (*quote_string);
270 STORE ('\'');
288 STORE ('\\');
310 STORE ('?');
311 STORE ('\\');
312 STORE ('?');
368 STORE ('\'');
369 STORE ('\\');
[all...]
/freebsd-11.0-release/contrib/libarchive/libarchive/test/
H A Dtest_read_format_cab.c173 STORE = 0, enumerator in enum:comp_type
204 if (comp != STORE) {
258 if (comp != STORE) {
302 if (comp != STORE) {
325 if (comp != STORE) {
362 if (comp != STORE) {
380 if (comp != STORE) {
398 verify("test_read_format_cab_1.cab", STORE);
399 verify2("test_read_format_cab_1.cab", STORE);
400 verify3("test_read_format_cab_1.cab", STORE);
[all...]
/freebsd-11.0-release/lib/libiconv_modules/ZW/
H A Dcitrus_zw.c125 #define STORE \ macro
143 STORE;
163 STORE;
178 STORE;
190 STORE;
204 STORE;
/freebsd-11.0-release/contrib/bmake/mk/
H A Dmanifest.mk39 # STORE defaults to basename of src and target directory
42 # STORE.sbin/sh-static = sbin/sh
65 ${${.TARGET}.DIRS:O:u:@d@${${.TARGET}.SRCS.$d:O:u:@f@echo '${s::=${STORE.$d/${f:T}:U$d/${f:T}}}$s contents="$f" type=file uid=${UID:${M_FILE_ATTR}} gid=${GID:${M_FILE_ATTR}} mode=${MODE:${M_FILE_ATTR}} ${FLAGS:${M_FILE_ATTR}}';@}@} \
/freebsd-11.0-release/crypto/openssl/crypto/
H A Dossl_typ.h169 typedef struct store_st STORE; typedef in typeref:struct:store_st
/freebsd-11.0-release/contrib/llvm/lib/Target/Mips/
H A DMipsISelDAGToDAG.cpp213 case ISD::STORE:
H A DMips16ISelDAGToDAG.cpp144 case ISD::STORE: {
H A DMipsSEISelLowering.cpp72 setOperationAction(ISD::STORE, VecTys[i], Legal);
140 setOperationAction(ISD::STORE, MVT::i32, Custom);
152 setOperationAction(ISD::STORE, MVT::f64, Custom);
255 setOperationAction(ISD::STORE, Ty, Legal);
303 setOperationAction(ISD::STORE, Ty, Legal);
364 case ISD::STORE: return lowerSTORE(Op, DAG);
/freebsd-11.0-release/contrib/llvm/include/llvm/CodeGen/
H A DISDOpcodes.h531 /// LOAD and STORE have token chains as their first operand, then the same
535 LOAD, STORE, enumerator in enum:llvm::ISD::NodeType
H A DSelectionDAGNodes.h1201 return getOperand(getOpcode() == ISD::STORE ? 2 : 1);
1209 N->getOpcode() == ISD::STORE ||
1967 N->getOpcode() == ISD::STORE;
1999 /// This class is used to represent ISD::STORE nodes.
2005 : LSBaseSDNode(ISD::STORE, Order, dl, ChainValuePtrOff, 4,
2024 return N->getOpcode() == ISD::STORE;
/freebsd-11.0-release/contrib/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelLowering.cpp110 setOperationAction(ISD::STORE, MVT::f32, Promote);
111 AddPromotedToType(ISD::STORE, MVT::f32, MVT::i32);
113 setOperationAction(ISD::STORE, MVT::v2f32, Promote);
114 AddPromotedToType(ISD::STORE, MVT::v2f32, MVT::v2i32);
116 setOperationAction(ISD::STORE, MVT::v4f32, Promote);
117 AddPromotedToType(ISD::STORE, MVT::v4f32, MVT::v4i32);
119 setOperationAction(ISD::STORE, MVT::v8f32, Promote);
120 AddPromotedToType(ISD::STORE, MVT::v8f32, MVT::v8i32);
122 setOperationAction(ISD::STORE, MVT::v16f32, Promote);
123 AddPromotedToType(ISD::STORE, MV
[all...]
H A DSIISelLowering.cpp91 setOperationAction(ISD::STORE, MVT::v8i32, Custom);
92 setOperationAction(ISD::STORE, MVT::v16i32, Custom);
94 setOperationAction(ISD::STORE, MVT::i1, Custom);
95 setOperationAction(ISD::STORE, MVT::v4i32, Custom);
182 setOperationAction(ISD::STORE, MVT::v2i64, Promote);
183 AddPromotedToType(ISD::STORE, MVT::v2i64, MVT::v4i32);
203 // We only support LOAD/STORE and vector manipulation ops for vectors
209 case ISD::STORE:
270 setTargetDAGCombine(ISD::STORE);
1075 case ISD::STORE
[all...]
H A DR600ISelLowering.cpp147 setOperationAction(ISD::STORE, MVT::i8, Custom);
148 setOperationAction(ISD::STORE, MVT::i32, Custom);
149 setOperationAction(ISD::STORE, MVT::v2i32, Custom);
150 setOperationAction(ISD::STORE, MVT::v4i32, Custom);
602 case ISD::STORE: return LowerSTORE(Op, DAG);
/freebsd-11.0-release/sys/boot/ficl/
H A Dvm.c185 STORE,
H A Dficl.h414 #define STORE(n,c) stackStore(pVM->pStack,n,LVALUEtoCELL(c)) macro
/freebsd-11.0-release/contrib/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp139 setOperationAction(ISD::STORE, MVT::i32, Custom);
176 setTargetDAGCombine(ISD::STORE);
213 case ISD::STORE: return LowerSTORE(Op, DAG);
1813 case ISD::STORE: {
/freebsd-11.0-release/crypto/openssl/crypto/ec/asm/
H A Decp_nistz256-avx2.pl453 sub STORE { subroutine
1103 `&STORE`
1248 `&STORE`
1315 `&STORE`
1341 #STORE
1348 #STORE
1437 #STORE
1608 `&STORE`
1636 `&STORE`
1662 #STORE
[all...]
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGDumper.cpp292 case ISD::STORE: return "store";
H A DLegalizeVectorOps.cpp230 } else if (Op.getOpcode() == ISD::STORE) {
/freebsd-11.0-release/contrib/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp514 setOperationAction(ISD::STORE, VT.getSimpleVT(), Promote);
515 AddPromotedToType(ISD::STORE, VT.getSimpleVT(),
1740 setOperationAction(ISD::STORE, MVT::v4i16, Promote);
1742 AddPromotedToType(ISD::STORE, MVT::v4i16, MVT::i64);
/freebsd-11.0-release/contrib/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp1469 setOperationAction(ISD::STORE, MVT::v2i32, Legal);
1475 setOperationAction(ISD::STORE, MVT::i64, Custom);
1479 // AddPromotedToType(ISD::STORE, MVT::i64, MVT::v2i32);
1599 // Custom Lower Atomic LOAD/STORE
1688 setOperationAction(ISD::STORE, MVT::f128, Legal);
1691 setOperationAction(ISD::STORE, MVT::f128, Custom);
2952 case ISD::STORE: return LowerSTORE(Op, DAG);
/freebsd-11.0-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp117 setOperationAction(ISD::STORE, MVT::i1, Custom);
443 setOperationAction(ISD::STORE, VT, Promote);
444 AddPromotedToType (ISD::STORE, VT, MVT::v4i32);
508 setOperationAction(ISD::STORE , MVT::v4i32, Legal);
599 setOperationAction(ISD::STORE, MVT::v2f64, Legal);
633 setOperationAction(ISD::STORE, MVT::v2i64, Promote);
634 AddPromotedToType (ISD::STORE, MVT::v2i64, MVT::v2f64);
669 setOperationAction(ISD::STORE , MVT::v4f64, Custom);
722 setOperationAction(ISD::STORE , MVT::v4f32, Custom);
768 setOperationAction(ISD::STORE , MV
[all...]

Completed in 870 milliseconds

12