Searched refs:inout (Results 1 - 25 of 57) sorted by relevance

123

/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);
H A Dcp_size_mode.pass.cpp24 std::strstream inout(buf, 0);
25 assert(inout.str() == std::string("123 4.5 dog"));
29 inout >> i;
30 assert(inout.fail());
31 inout.clear();
32 inout << i << ' ' << d << ' ' << s;
33 assert(inout.str() == std::string("321 5.5 cat"));
37 inout >> i >> d >> s;
44 std::strstream inout(buf, 11, std::ios::app);
45 assert(inout
[all...]
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_quad_stipple.c39 quad->inout.mask &= ~MASK_TOP_LEFT;
42 quad->inout.mask &= ~MASK_TOP_RIGHT;
45 quad->inout.mask &= ~MASK_BOTTOM_LEFT;
48 quad->inout.mask &= ~MASK_BOTTOM_RIGHT;
50 if (quad->inout.mask)
H A Dsp_quad.h100 struct quad_header_inout inout; member in struct:quad_header
H A Dsp_quad_depth_test_tmp.h77 const unsigned outmask = quads[i]->inout.mask;
135 quads[i]->inout.mask = mask;
136 if (quads[i]->inout.mask)
H A Dsp_fs_exec.c132 machine->NonHelperMask = quad->inout.mask;
133 quad->inout.mask &= tgsi_exec_machine_run( machine, 0 );
134 if (quad->inout.mask == 0)
H A Dsp_quad_depth_test.c595 quad->inout.mask &= zmask;
596 if (quad->inout.mask == 0)
605 if (quad->inout.mask & (1 << j)) {
652 failMask = quad->inout.mask & ~passMask;
653 quad->inout.mask &= passMask;
660 if (quad->inout.mask) {
663 const unsigned origMask = quad->inout.mask;
669 const unsigned zFailMask = origMask & ~quad->inout.mask;
674 const unsigned zPassMask = origMask & quad->inout.mask;
680 apply_stencil_op(data, quad->inout
[all...]
H A Dsp_setup.c142 quad->inout.mask = 0x0;
146 quad->inout.mask &= (MASK_BOTTOM_RIGHT | MASK_TOP_RIGHT);
148 quad->inout.mask &= (MASK_BOTTOM_LEFT | MASK_BOTTOM_RIGHT);
150 quad->inout.mask &= (MASK_BOTTOM_LEFT | MASK_TOP_LEFT);
152 quad->inout.mask &= (MASK_TOP_LEFT | MASK_TOP_RIGHT);
164 if (quad->inout.mask) {
168 setup->numFragsEmitted += util_bitcount(quad->inout.mask);
239 setup->quad[q].inout.mask = quadmask;
1074 setup->quad[0].inout.mask = 0x0;
1077 setup->quad[0].inout
[all...]
/external/libchrome/sandbox/linux/seccomp-bpf/
H A Dsyscall.cc332 register intptr_t inout __asm__("r0") = nr;
337 : "=r"(inout)
338 : "0"(inout), "r"(data)
358 ret = inout;
373 register intptr_t inout __asm__("x0") = nr;
376 : "=r"(inout)
377 : "0"(inout), "r"(data)
379 ret = inout;
/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/clang/test/OpenMP/
H A Dtarget_update_ast_print.cpp16 #pragma omp target update to(a) if(l>5) device(l) nowait depend(inout:l)
18 #pragma omp target update from(b) if(l<5) device(l-1) nowait depend(inout:l)
24 // CHECK-NEXT: #pragma omp target update to(a) if(l > 5) device(l) nowait depend(inout : l)
25 // CHECK-NEXT: #pragma omp target update from(b) if(l < 5) device(l - 1) nowait depend(inout : l)
29 // CHECK-NEXT: #pragma omp target update to(a) if(l > 5) device(l) nowait depend(inout : l)
30 // CHECK-NEXT: #pragma omp target update from(b) if(l < 5) device(l - 1) nowait depend(inout : l)
34 // CHECK-NEXT: #pragma omp target update to(a) if(l > 5) device(l) nowait depend(inout : l)
35 // CHECK-NEXT: #pragma omp target update from(b) if(l < 5) device(l - 1) nowait depend(inout : l)
H A Dtask_if_codegen.cpp58 #pragma omp task if (Arg) depend(inout : Arg)
105 #pragma omp task if (Arg) depend(inout : Arg)
H A Dtask_codegen.cpp191 #pragma omp task final(true) depend(inout: a, s[1], arr[:a][3:])
/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/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...]
/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/clang/tools/scan-view/share/
H A Dstartfile.py45 inout = file(os.devnull, 'r+')
48 inout = None
57 pipe = subprocess.Popen(cmdline, stdin=inout, stdout=inout,
58 stderr=inout, close_fds=closefds,
/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/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/boringssl/src/crypto/fipsmodule/aes/asm/
H A Daesp8-ppc.pl502 my ($rndkey0,$rndkey1,$inout,$tmp)= map("v$_",(0..3));
548 vmr $inout,$inptail
555 vperm $inout,$inout,$inptail,$inpperm
559 vxor $inout,$inout,$rndkey0
562 vxor $inout,$inout,$ivec
566 vcipher $inout,$inout,
[all...]
H A Daesv8-armx.pl323 my ($rndkey0,$rndkey1,$inout)=map("q$_",(0..3));
332 vld1.8 {$inout},[$inp]
337 aes$e $inout,$rndkey0
338 aes$mc $inout,$inout
341 aes$e $inout,$rndkey1
342 aes$mc $inout,$inout
346 aes$e $inout,$rndkey0
347 aes$mc $inout,
[all...]
/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/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/svox/pico/lib/
H A Dpicodata.c697 picoos_uint8 * inout,
711 rest += fact * inout[i];
713 inout[i] = rest >> PICODATA_PRECISION;
714 rest -= inout[i] << PICODATA_PRECISION;
722 picoos_uint8 * inout,
736 weighted_sum += inout[i] * weight[i];
739 transDurUniform(frame_duration_exp,array_length,inout,inputdur,targetdur,restdur);
751 rest += fact * inout[i] * weight[i];
753 out = inout[i] + (rest >> PICODATA_PRECISION);
757 rest -= ((out-inout[
694 transDurUniform( picoos_uint8 frame_duration_exp, picoos_int8 array_length, picoos_uint8 * inout, picoos_int16 inputdur, picoos_int16 targetdur, picoos_int16 * restdur ) argument
719 transDurWeighted( picoos_uint8 frame_duration_exp, picoos_int8 array_length, picoos_uint8 * inout, const picoos_uint16 * weight, picoos_int16 inputdur, picoos_int16 targetdur, picoos_int16 * restdur ) argument
765 picodata_transformDurations( picoos_uint8 frame_duration_exp, picoos_int8 array_length, picoos_uint8 * inout, const picoos_uint16 * weight, picoos_int16 mintarget, picoos_int16 maxtarget, picoos_int16 facttarget, picoos_int16 * dur_rest ) argument
[all...]
/external/boringssl/src/ssl/test/runner/curve25519/
H A Dfreeze_amd64.s12 // func freeze(inout *[5]uint64)
14 MOVQ inout+0(FP), DI

Completed in 781 milliseconds

123