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

12

/freebsd-10-stable/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-10-stable/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-10-stable/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-10-stable/lib/libiconv_modules/ZW/
H A Dcitrus_zw.c125 #define STORE \ macro
143 STORE;
163 STORE;
178 STORE;
190 STORE;
204 STORE;
/freebsd-10-stable/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-10-stable/contrib/llvm/lib/Target/R600/
H A DAMDGPUISelLowering.cpp68 setOperationAction(ISD::STORE, MVT::f32, Promote);
69 AddPromotedToType(ISD::STORE, MVT::f32, MVT::i32);
71 setOperationAction(ISD::STORE, MVT::v2f32, Promote);
72 AddPromotedToType(ISD::STORE, MVT::v2f32, MVT::v2i32);
74 setOperationAction(ISD::STORE, MVT::v4f32, Promote);
75 AddPromotedToType(ISD::STORE, MVT::v4f32, MVT::v4i32);
77 setOperationAction(ISD::STORE, MVT::v8f32, Promote);
78 AddPromotedToType(ISD::STORE, MVT::v8f32, MVT::v8i32);
80 setOperationAction(ISD::STORE, MVT::v16f32, Promote);
81 AddPromotedToType(ISD::STORE, MV
[all...]
H A DSIISelLowering.cpp92 setOperationAction(ISD::STORE, MVT::v8i32, Custom);
93 setOperationAction(ISD::STORE, MVT::v16i32, Custom);
101 setOperationAction(ISD::STORE, MVT::i32, Custom);
102 setOperationAction(ISD::STORE, MVT::i64, Custom);
103 setOperationAction(ISD::STORE, MVT::i128, Custom);
104 setOperationAction(ISD::STORE, MVT::v2i32, Custom);
105 setOperationAction(ISD::STORE, MVT::v4i32, Custom);
461 case ISD::STORE: return LowerSTORE(Op, DAG);
H A DR600ISelLowering.cpp103 setOperationAction(ISD::STORE, MVT::i8, Custom);
104 setOperationAction(ISD::STORE, MVT::i32, Custom);
105 setOperationAction(ISD::STORE, MVT::v2i32, Custom);
106 setOperationAction(ISD::STORE, MVT::v4i32, Custom);
516 case ISD::STORE: return LowerSTORE(Op, DAG);
777 case ISD::STORE:
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/
H A DISDOpcodes.h456 /// LOAD and STORE have token chains as their first operand, then the same
460 LOAD, STORE, enumerator in enum:llvm::ISD::NodeType
H A DSelectionDAGNodes.h1055 return getOperand(getOpcode() == ISD::STORE ? 2 : 1);
1063 N->getOpcode() == ISD::STORE ||
1714 N->getOpcode() == ISD::STORE;
1747 /// StoreSDNode - This class is used to represent ISD::STORE nodes.
1754 : LSBaseSDNode(ISD::STORE, Order, dl, ChainValuePtrOff, 4,
1773 return N->getOpcode() == ISD::STORE;
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/
H A DMipsISelDAGToDAG.cpp197 case ISD::STORE:
H A DMips16ISelDAGToDAG.cpp142 case ISD::STORE: {
H A DMipsSEISelLowering.cpp73 setOperationAction(ISD::STORE, VecTys[i], Legal);
135 setOperationAction(ISD::STORE, MVT::i32, Custom);
147 setOperationAction(ISD::STORE, MVT::f64, Custom);
169 setOperationAction(ISD::STORE, Ty, Legal);
217 setOperationAction(ISD::STORE, Ty, Legal);
265 case ISD::STORE: return lowerSTORE(Op, DAG);
/freebsd-10-stable/crypto/openssl/crypto/
H A Dossl_typ.h167 typedef struct store_st STORE; typedef in typeref:struct:store_st
/freebsd-10-stable/sys/boot/ficl/
H A Dvm.c185 STORE,
H A Dficl.h414 #define STORE(n,c) stackStore(pVM->pStack,n,LVALUEtoCELL(c)) macro
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGDumper.cpp257 case ISD::STORE: return "store";
H A DLegalizeVectorOps.cpp163 } else if (Op.getOpcode() == ISD::STORE) {
H A DLegalizeFloatTypes.cpp632 case ISD::STORE: Res = SoftenFloatOp_STORE(N, OpNo); break;
1285 case ISD::STORE: Res = ExpandFloatOp_STORE(cast<StoreSDNode>(N),
H A DLegalizeVectorTypes.cpp384 case ISD::STORE:
1145 case ISD::STORE:
2346 case ISD::STORE: Res = WidenVecOp_STORE(N); break;
/freebsd-10-stable/contrib/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp139 setOperationAction(ISD::STORE, MVT::i32, Custom);
171 setTargetDAGCombine(ISD::STORE);
204 case ISD::STORE: return LowerSTORE(Op, DAG);
1544 case ISD::STORE: {
/freebsd-10-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_format_rar5.c3753 STORE = 0, FASTEST = 1, FAST = 2, NORMAL = 3, GOOD = 4, enumerator in enum:COMPRESSION_METHOD
3761 case STORE:
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp191 setOperationAction(ISD::STORE, MVT::i1, Custom);
216 setOperationAction(ISD::STORE, VT, Custom);
1177 case ISD::STORE:

Completed in 681 milliseconds

12