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

1 2 3

  /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
652 #define STORE 0x02
664 { STORE, 42, 42, 42 },
665 { STORE, 1, 1, 1 },
666 { STORE, 2, 2, 2 },
667 { STORE, 3, 3, 3 },
668 { STORE, 10, 1, 1 },
669 { STORE, 42, 0, 0 },
690 { STORE, 1, 1, 1 },
691 { STORE, 2, 2, 2 }
    [all...]
  /external/linux-tools-perf/perf-3.12.0/arch/mips/lib/
memcpy.S 108 #define STORE sd
144 #define STORE sw
253 EXC( STORE t0, UNIT(0)(dst), .Ls_exc_p8u)
254 EXC( STORE t1, UNIT(1)(dst), .Ls_exc_p7u)
259 EXC( STORE t2, UNIT(-6)(dst), .Ls_exc_p6u)
260 EXC( STORE t3, UNIT(-5)(dst), .Ls_exc_p5u)
261 EXC( STORE t4, UNIT(-4)(dst), .Ls_exc_p4u)
262 EXC( STORE t7, UNIT(-3)(dst), .Ls_exc_p3u)
263 EXC( STORE t0, UNIT(-2)(dst), .Ls_exc_p2u)
264 EXC( STORE t1, UNIT(-1)(dst), .Ls_exc_p1u
    [all...]
  /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/0.153/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/chromium_org/v8/src/compiler/
machine-operator.cc 165 #define STORE(Type) \
166 struct Store##Type##Operator : public Operator1<StoreRepresentation> { \
167 explicit Store##Type##Operator(WriteBarrierKind write_barrier_kind) \
170 "Store", StoreRepresentation(k##Type, write_barrier_kind)) {} \
172 struct Store##Type##NoWriteBarrier##Operator FINAL \
173 : public Store##Type##Operator { \
174 Store##Type##NoWriteBarrier##Operator() \
175 : Store##Type##Operator(kNoWriteBarrier) {} \
177 struct Store##Type##FullWriteBarrier##Operator FINAL \
178 : public Store##Type##Operator {
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/chacha/
chacha_vec.c 46 #define STORE(m, r) (*((vec *)(m))) = (r)
74 #define STORE(m, r) _mm_storeu_si128((__m128i *)(m), (__m128i)(r))
129 STORE(op + d + 0, LOAD(in + d + 0) ^ REVV_BE(v0)); \
130 STORE(op + d + 4, LOAD(in + d + 4) ^ REVV_BE(v1)); \
131 STORE(op + d + 8, LOAD(in + d + 8) ^ REVV_BE(v2)); \
132 STORE(op + d +12, LOAD(in + d +12) ^ REVV_BE(v3));
305 STORE(op + 0, LOAD(ip + 0) ^ REVV_BE(v0 + s0));
308 STORE(op + 4, LOAD(ip + 4) ^ REVV_BE(v1 + s1));
311 STORE(op + 8, LOAD(ip + 8) ^
  /external/chromium_org/third_party/libwebp/dsp/
dec.c 26 #define STORE(x, y, v) \
31 STORE(0, y, DC + (d)); \
32 STORE(1, y, DC + (c)); \
33 STORE(2, y, DC - (c)); \
34 STORE(3, y, DC - (d)); \
71 STORE(0, 0, a + d);
72 STORE(1, 0, b + c);
73 STORE(2, 0, b - c);
74 STORE(3, 0, a - d);
112 STORE(i, j, DC)
    [all...]
enc.c 85 #define STORE(x, y, v) \
117 STORE(0, i, a + d);
118 STORE(1, i, b + c);
119 STORE(2, i, b - c);
120 STORE(3, i, a - d);
193 #undef STORE
  /external/webp/src/dsp/
dec.c 26 #define STORE(x, y, v) \
31 STORE(0, y, DC + (d)); \
32 STORE(1, y, DC + (c)); \
33 STORE(2, y, DC - (c)); \
34 STORE(3, y, DC - (d)); \
71 STORE(0, 0, a + d);
72 STORE(1, 0, b + c);
73 STORE(2, 0, b - c);
74 STORE(3, 0, a - d);
112 STORE(i, j, DC)
    [all...]
enc.c 85 #define STORE(x, y, v) \
117 STORE(0, i, a + d);
118 STORE(1, i, b + c);
119 STORE(2, i, b - c);
120 STORE(3, i, a - d);
193 #undef STORE
  /external/chromium_org/content/browser/service_worker/
service_worker_register_job.h 83 STORE,
  /packages/apps/Email/provider_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);
82 public static final String STORE = "STORE";
90 public static final String UID_STORE = "UID STORE";
  /external/pcre/dist/sljit/
sljitNativeARM_64.c 768 #define STORE 0x01
923 tmp_r = (flags & STORE) ? TMP_REG3 : reg;
    [all...]
sljitNativeARM_T2_32.c 788 #define STORE 0x01
813 s = store
964 FAIL_IF(push_inst16(compiler, STR_SP | ((flags & STORE) ? 0 : 0x800) | RDN3(reg) | (argw >> 2)));
1014 tmp_r = (flags & STORE) ? TMP_REG3 : reg;
    [all...]
  /external/llvm/include/llvm/CodeGen/
ISDOpcodes.h 214 /// indicates if an overflow occurred (*not* a flag, because it may be store
492 /// LOAD and STORE have token chains as their first operand, then the same
493 /// operands as an LLVM load/store instruction, then an offset node that
496 LOAD, STORE,
643 /// This corresponds to "store atomic" instruction.
693 /// MemIndexedMode enum - This enum defines the load / store indexed
696 /// UNINDEXED "Normal" load / store. The effective address is already
700 /// load); an unindexed store does not produce a value.
705 /// store operation (i.e. the load / store does the addres
    [all...]
  /external/llvm/lib/Target/Mips/
MipsISelDAGToDAG.cpp 67 /// Used on Mips Load/Store instructions
205 case ISD::STORE:
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
Label.java 73 static final int STORE = 32;
116 * @see #STORE
146 * as a bitset to store the subroutines to which a basic block belongs. This
347 * small to store the offset. In such a case the corresponding jump
  /external/openssl/crypto/
ossl_typ.h 167 typedef struct store_st STORE;
  /external/openssl/include/openssl/
ossl_typ.h 167 typedef struct store_st STORE;
  /external/llvm/lib/Target/R600/
AMDGPUISelLowering.cpp 87 // Find a larger type to do a load / store of a vector with.
93 assert(StoreSize % 32 == 0 && "Store size not a multiple of 32");
134 // Lower floating point store/load to integer store/load to reduce the number
136 setOperationAction(ISD::STORE, MVT::f32, Promote);
137 AddPromotedToType(ISD::STORE, MVT::f32, MVT::i32);
139 setOperationAction(ISD::STORE, MVT::v2f32, Promote);
140 AddPromotedToType(ISD::STORE, MVT::v2f32, MVT::v2i32);
142 setOperationAction(ISD::STORE, MVT::i64, Promote);
143 AddPromotedToType(ISD::STORE, MVT::i64, MVT::v2i32)
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H264TrackImpl.java 223 IGNORE, BUFFER, STORE, END
261 case STORE:
352 action = NALActions.STORE; // Will only work in single slice per frame mode!

Completed in 1021 milliseconds

1 2 3