Searched defs:inout (Results 1 - 18 of 18) sorted by relevance

/external/libcxx/test/std/depr/depr.str.strstreams/depr.strstream/depr.strstream.cons/
H A Ddefault.pass.cpp22 std::strstream inout; local
26 inout << i << ' ' << d << ' ' << s << std::ends;
27 assert(inout.str() == std::string("123 4.5 dog"));
31 inout >> i >> d >> s;
35 inout.freeze(false);
/external/libconstrainedcrypto/
H A Drsa.c96 // Input and output big-endian byte array in inout.
98 uint8_t* inout) {
108 (inout[((key->len - 1 - i) * 4) + 0] << 24) |
109 (inout[((key->len - 1 - i) * 4) + 1] << 16) |
110 (inout[((key->len - 1 - i) * 4) + 2] << 8) |
111 (inout[((key->len - 1 - i) * 4) + 3] << 0);
138 *inout++ = tmp >> 24;
139 *inout++ = tmp >> 16;
140 *inout++ = tmp >> 8;
141 *inout
97 modpow(const RSAPublicKey* key, uint8_t* inout) argument
[all...]
H A Dp256_ec.c194 * On entry: carry < 2**3, inout[0,2,...] < 2**29, inout[1,3,...] < 2**28.
195 * On exit: inout[0,2,..] < 2**30, inout[1,3,...] < 2**29. */
196 static void felem_reduce_carry(felem inout, limb carry) { argument
199 inout[0] += carry << 1;
200 inout[3] += 0x10000000 & carry_mask;
203 inout[3] -= carry << 11;
204 inout[4] += (0x20000000 - 1) & carry_mask;
205 inout[
[all...]
/external/vboot_reference/firmware/lib/cryptolib/
H A Drsa.c79 * Input and output big-endian byte array in inout.
82 uint8_t* inout) {
93 (inout[((key->len - 1 - i) * 4) + 0] << 24) |
94 (inout[((key->len - 1 - i) * 4) + 1] << 16) |
95 (inout[((key->len - 1 - i) * 4) + 2] << 8) |
96 (inout[((key->len - 1 - i) * 4) + 3] << 0);
116 *inout++ = (uint8_t)(tmp >> 24);
117 *inout++ = (uint8_t)(tmp >> 16);
118 *inout++ = (uint8_t)(tmp >> 8);
119 *inout
81 modpowF4(const RSAPublicKey *key, uint8_t* inout) argument
[all...]
/external/avb/libavb/
H A Davb_rsa.c173 * Input and output big-endian byte array in inout.
175 static void modpowF4(const IAvbKey* key, uint8_t* inout) { argument
188 uint32_t tmp = (inout[((key->len - 1 - i) * 4) + 0] << 24) |
189 (inout[((key->len - 1 - i) * 4) + 1] << 16) |
190 (inout[((key->len - 1 - i) * 4) + 2] << 8) |
191 (inout[((key->len - 1 - i) * 4) + 3] << 0);
210 *inout++ = (uint8_t)(tmp >> 24);
211 *inout++ = (uint8_t)(tmp >> 16);
212 *inout++ = (uint8_t)(tmp >> 8);
213 *inout
[all...]
/external/boringssl/src/crypto/evp/
H A Dscrypt.c38 // described in RFC 7914, section 3. It modifies the block at |inout|
40 static void salsa208_word_specification(block_t *inout) { argument
42 OPENSSL_memcpy(&x, inout, sizeof(x));
80 inout->words[i] += x.words[i];
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_quad.h100 struct quad_header_inout inout; member in struct:quad_header
/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
H A DCharMatcherTest.java413 private void doTestCollapseWithNoChange(String inout) { argument
414 assertSame(inout, is('-').collapseFrom(inout, '_'));
415 assertSame(inout, is('-').or(is('#')).collapseFrom(inout, '_'));
416 assertSame(inout, isNot('x').collapseFrom(inout, '_'));
417 assertSame(inout, is('x').negate().collapseFrom(inout, '_'));
418 assertSame(inout, anyO
[all...]
/external/ipsec-tools/src/racoon/
H A Dprivsep.c510 int inout; local
526 memcpy(&inout, bufs[3], sizeof(port));
537 raddr, bufs[2], inout) != 0) {
570 int inout; local
581 memcpy(&inout, bufs[1], sizeof(inout));
593 port, inout);
596 if (isakmp_cfg_accounting_pam(port, inout) != 0) {
991 privsep_accounting_system(port, raddr, usr, inout)
995 int inout;
[all...]
/external/vboot_reference/firmware/2lib/
H A D2rsa.c96 * @param inout Input and output big-endian byte array
100 static void modpowF4(const struct vb2_public_key *key, uint8_t *inout, argument
112 (inout[((key->arrsize - 1 - i) * 4) + 0] << 24) |
113 (inout[((key->arrsize - 1 - i) * 4) + 1] << 16) |
114 (inout[((key->arrsize - 1 - i) * 4) + 2] << 8) |
115 (inout[((key->arrsize - 1 - i) * 4) + 3] << 0);
135 *inout++ = (uint8_t)(tmp >> 24);
136 *inout++ = (uint8_t)(tmp >> 16);
137 *inout++ = (uint8_t)(tmp >> 8);
138 *inout
[all...]
/external/guava/guava-tests/test/com/google/common/base/
H A DCharMatcherTest.java482 private void doTestCollapseWithNoChange(String inout) { argument
483 assertSame(inout, is('-').collapseFrom(inout, '_'));
484 assertSame(inout, is('-').or(is('#')).collapseFrom(inout, '_'));
485 assertSame(inout, isNot('x').collapseFrom(inout, '_'));
486 assertSame(inout, is('x').negate().collapseFrom(inout, '_'));
487 assertSame(inout, anyO
[all...]
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktAtomicOperationTests.cpp184 // Use half the number of elements for inout to cause overlap between atomic operations.
185 // Each inout element at index i will have two atomic operations using input from
188 deUint32 inout[NUM_ELEMENTS / 2]; member in struct:vkt::shaderexecutor::__anon4470::AtomicOperationCaseInstance::BufferInterface
200 Expected (T inout, T output0, T output1) argument
201 : m_inout(inout)
207 bool compare (deUint32 inout, deUint32 output0, deUint32 output1) argument
209 return (deMemCmp((const void*)&m_inout, (const void*)&inout, sizeof(inout)) == 0
245 // originalInout = original inout
262 const T originalInout = *reinterpret_cast<const T*>(&original.inout[elementNd
[all...]
/external/libchrome/crypto/
H A Dp224.cc43 void Contract(FieldElement* inout);
297 void Contract(FieldElement* inout) { argument
298 FieldElement& out = *inout;
/external/deqp/modules/gles3/functional/
H A Des3fTransformFeedbackTests.cpp359 const char* inout = ndx ? "in" : "out"; local
371 str << getInterpolationName(var->interpolation) << " " << inout << " " << glu::declare(var->type, var->name.c_str()) << ";\n";
/external/mesa3d/src/compiler/spirv/
H A Dvtn_variables.c171 nir_deref *tail, struct vtn_ssa_value *inout)
197 inout->def = &intrin->dest.ssa;
200 intrin->src[0] = nir_src_for_ssa(inout->def);
213 _vtn_local_load_store(b, load, deref, tail->child, inout->elems[i]);
223 _vtn_local_load_store(b, load, deref, tail->child, inout->elems[i]);
468 struct vtn_ssa_value **inout, const struct glsl_type *type)
476 instr->src[src++] = nir_src_for_ssa((*inout)->def);
503 (*inout)->def = &instr->dest.ssa;
509 (*inout)->def = nir_ine(&b->nb, (*inout)
170 _vtn_local_load_store(struct vtn_builder *b, bool load, nir_deref_var *deref, nir_deref *tail, struct vtn_ssa_value *inout) argument
465 _vtn_load_store_tail(struct vtn_builder *b, nir_intrinsic_op op, bool load, nir_ssa_def *index, nir_ssa_def *offset, unsigned access_offset, unsigned access_size, struct vtn_ssa_value **inout, const struct glsl_type *type) argument
513 _vtn_block_load_store(struct vtn_builder *b, nir_intrinsic_op op, bool load, nir_ssa_def *index, nir_ssa_def *offset, unsigned access_offset, unsigned access_size, struct vtn_access_chain *chain, unsigned chain_idx, struct vtn_type *type, struct vtn_ssa_value **inout) argument
732 _vtn_variable_load_store(struct vtn_builder *b, bool load, struct vtn_access_chain *chain, struct vtn_type *tail_type, struct vtn_ssa_value **inout) argument
[all...]
/external/mesa3d/src/gallium/drivers/etnaviv/
H A Detnaviv_compiler.c325 struct etna_reg_desc *inout = inout_order[inout_ptr].ptr; local
328 if (!inout->active || inout->native.valid) { /* Skip if already a native register assigned */
335 if (mode_inputs ? (inout->last_use <= temp->first_use)
336 : (inout->first_use >= temp->last_use)) {
338 inout->native = temp->native;
347 struct etna_reg_desc *inout = inout_order[inout_ptr].ptr; local
349 if (inout->active && !inout->native.valid)
350 inout
[all...]
/external/mesa3d/src/gallium/drivers/freedreno/ir3/
H A Dir3.h239 } inout; member in union:ir3_instruction::__anon16176
/external/libpng/contrib/tools/
H A Dpngfix.c334 uarb_shift(uarb inout, int ndigits, unsigned int right_shift) argument
335 /* Shift inout right by right_shift bits, right_shift must be in the range
346 png_uint_16 temp = (png_uint_16)(carry | (inout[i] >> right_shift));
349 carry = (png_uint_16)((inout[i] << (16-right_shift)) & 0xffff);
351 inout[i] = temp;

Completed in 502 milliseconds