HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 351 - 375 of 1601) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
IndexDataManager.cpp 27 GLushort *out = static_cast<GLushort*>(output); local
31 out[i] = in[i];
48 GLuint *out = static_cast<GLuint*>(output); local
52 out[i] = in[i];
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
vertexconversion.h 150 // static void convertArray(const void *in, std::size_t stride, std::size_t n, void *out): convert an array of vertices. Input may be strided, but output will be unstrided.
163 OutputType *out = reinterpret_cast<OutputType*>(output); local
169 copyComponent(out, ein, 0, static_cast<OutputType>(DefaultValueRule::zero()));
170 copyComponent(out, ein, 1, static_cast<OutputType>(DefaultValueRule::zero()));
171 copyComponent(out, ein, 2, static_cast<OutputType>(DefaultValueRule::zero()));
172 copyComponent(out, ein, 3, static_cast<OutputType>(DefaultValueRule::one()));
174 out += WidenRule::finalWidth;
179 static void copyComponent(OutputType *out, const InputType *in, std::size_t elementindex, OutputType defaultvalue)
185 out[elementindex] = Converter::convert(in[elementindex]);
189 out[elementindex] = defaultvalue
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/ecdsa/
ecdsa_test.c 45 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
65 int test_builtin(BIO *out) {
80 BIO_printf(out, "ERROR: unable to get random data\n");
86 BIO_printf(out,
119 BIO_printf(out, "%s: ", OBJ_nid2sn(nid));
122 BIO_printf(out, " failed\n");
139 BIO_printf(out, " failed\n");
143 BIO_printf(out, ".");
144 (void)BIO_flush(out);
147 BIO_printf(out, " failed\n")
287 BIO *out; local
    [all...]
  /external/chromium_org/third_party/freetype/src/base/
ftgloadr.c 372 FT_Outline* out = &target->base.outline; local
376 FT_ARRAY_COPY( out->points, in->points,
378 FT_ARRAY_COPY( out->tags, in->tags,
380 FT_ARRAY_COPY( out->contours, in->contours,
392 out->n_points = (short)num_points;
393 out->n_contours = (short)num_contours;
  /external/chromium_org/third_party/icu/source/common/
ucharstrie.cpp 364 UCharsTrie::getNextUChars(Appendable &out) const {
370 out.appendCodeUnit(*pos); // Next unit of a pending linear-match node.
386 out.reserveAppendCapacity(++node);
387 getNextBranchUChars(pos, node, out);
391 out.appendCodeUnit(*pos);
397 UCharsTrie::getNextBranchUChars(const UChar *pos, int32_t length, Appendable &out) {
400 getNextBranchUChars(jumpByDelta(pos), length>>1, out); local
405 out.appendCodeUnit(*pos++);
408 out.appendCodeUnit(*pos);
  /external/chromium_org/third_party/icu/source/samples/dtitvfmtsample/
dtitvfmtsample.cpp 24 UFILE *out = u_finit(stdout, NULL, "UTF-8"); local
53 u_fprintf(out,"%-10s%-22s%-22s%-35s%-35s\n", "Skeleton","from","to","Date Interval in en_US","Date Interval in Ja");
58 u_fprintf(out,"%-10S%-22S%-22S",skeletons[j].getTerminatedBuffer(),data[i].getTerminatedBuffer(),data[i+1].getTerminatedBuffer());
67 u_fprintf(out,"%-35S%-35S\n", formatEn.getTerminatedBuffer(),formatJa.getTerminatedBuffer());
72 u_fclose(out);
94 UFILE *out = u_finit(stdout, NULL, "UTF-8"); local
130 u_fprintf(out,"%-10S%-22S%-22S", skeletons[i].getTerminatedBuffer(),data[j].getTerminatedBuffer(), data[j+1].getTerminatedBuffer());
137 u_fprintf(out,"%-45S%-35S\n", formatEn.getTerminatedBuffer(),formatJa.getTerminatedBuffer());
140 u_fclose(out);
  /external/chromium_org/third_party/icu/source/samples/layout/
GnomeFontInstance.cpp 182 le_int32 in, out; local
184 for (in = 0, out = 0; in < glyphCount; in += 1) {
188 glyph_t[out].index = glyph;
189 glyph_t[out].x = x + positions[in*2];
190 glyph_t[out].y = y + positions[in*2 + 1];
192 out += 1;
198 cairo_show_glyphs(cairo, glyph_t, out);
  /external/chromium_org/third_party/icu/source/test/perf/DateFmtPerf/
DateFmtPerf.cpp 160 ofstream out; local
161 out.open(argv[2]);
163 out << "<perfTestResults icu=\"c\" version=\"" << U_ICU_VERSION << "\">" << endl;
167 out << " <perfTestResult" << endl;
168 out << " test=\"";
171 case 0: out << "DateFormat"; break;
172 case 1: out << "BreakIterator Word"; break;
173 case 2: out << "BreakIterator Char"; break;
174 case 3: out << "NumbFormat"; break;
175 case 4: out << "Collation"; break
    [all...]
  /external/chromium_org/third_party/icu/source/tools/genrb/
prscmnts.cpp 100 UnicodeString out = matcher.group(1, *status); local
102 return out.extract(*dest, destCapacity,*status);
201 UnicodeString out = matcher.group(1, *status); local
202 return out.extract(*dest, destCapacity,*status);
  /external/chromium_org/third_party/icu/source/tools/icuinfo/
icuinfo.cpp 258 FILE *out = fopen(options[7].value, "w"); local
259 if(out==NULL) {
264 fprintf(out, "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n");
265 udbg_writeIcuInfo(out);
266 fclose(out);
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
idct8x8_test.cc 85 double out[64], out2[64]; local
93 out[j + i*8] = temp_out[j];
99 temp_in[j] = out[j*8 + i];
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_cliptest_tmp.h 23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
33 struct vertex_header *out = info->verts; local
54 float *position = out->data[pos];
57 initialize_vertex_header(out);
64 clipvertex = out->data[cv];
67 out->clip[i] = clipvertex[i];
68 out->pre_clip_pos[i] = position[i];
113 out->have_clipdist = 1;
116 clipdist = out->data[cd[0]][i];
118 clipdist = out->data[cd[1]][i-4]
    [all...]
  /external/chromium_org/third_party/openmax_dl/dl/sp/api/
armSP.h 97 OMX_U32 out; local
101 : "=r"(out)
104 return out;
  /external/chromium_org/third_party/opus/src/celt/
opus_custom_demo.c 25 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
61 opus_int16 *in, *out; local
129 out = (opus_int16*)malloc(frame_size*channels*sizeof(opus_int16));
168 ret = opus_custom_decode(dec, NULL, len, out, frame_size);
170 ret = opus_custom_decode(dec, data, len, out, frame_size);
175 out[i] = in[i];
180 rmsd += (in[i]-out[i])*1.0*(in[i]-out[i]);
181 /*out[i] -= in[i];*/
185 fwrite(out+skip*channels, sizeof(short), (ret-skip)*channels, fout)
    [all...]
  /external/chromium_org/third_party/opus/src/celt/tests/
test_unit_dft.c 24 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
54 void check(kiss_fft_cpx * in,kiss_fft_cpx * out,int nfft,int isinverse)
82 difr = ansr - out[bin].r;
83 difi = ansi - out[bin].i;
100 kiss_fft_cpx * out= (kiss_fft_cpx*)malloc(buflen); local
125 opus_ifft(cfg,in,out);
127 opus_fft(cfg,in,out);
129 /*for (k=0;k<nfft;++k) printf("%d %d ", out[k].r, out[k].i);printf("\n");*/
131 check(in,out,nfft,isinverse)
    [all...]
test_unit_mdct.c 24 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
54 void check(kiss_fft_scalar * in,kiss_fft_scalar * out,int nfft,int isinverse)
71 /*printf ("%f %f\n", ansr, out[bin]);*/
72 difr = ansr - out[bin];
84 void check_inv(kiss_fft_scalar * in,kiss_fft_scalar * out,int nfft,int isinverse)
101 /*printf ("%f %f\n", ansr, out[bin]);*/
102 difr = ansr - out[bin];
122 kiss_fft_scalar * out= (kiss_fft_scalar*)malloc(buflen); local
152 out[k] = 0;
153 clt_mdct_backward(&cfg,in,out, window, nfft/2, 0, 1)
    [all...]
  /external/chromium_org/third_party/opus/src/doc/
trivial_example.c 23 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
55 opus_int16 out[MAX_FRAME_SIZE*CHANNELS]; local
138 frame_size = opus_decode(decoder, cbits, nbBytes, out, MAX_FRAME_SIZE, 0);
148 pcm_bytes[2*i]=out[i]&0xFF;
149 pcm_bytes[2*i+1]=(out[i]>>8)&0xFF;
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
message_unittest.cc 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
100 ofstream out; local
104 EXPECT_FALSE(message.SerializeToOstream(&out));
  /external/chromium_org/third_party/skia/experimental/Intersection/
EdgeWalkerQuadratic4x4_Test.cpp 40 SkPath path, out; local
62 testSimplifyx(path, false, out, state, pathStr);
66 testSimplifyx(path, true, out, state, pathStr);
EdgeWalkerQuadratics_Test.cpp 14 SkPath path, out; local
21 testSimplify(path, true, out, bitmap);
25 SkPath path, out; local
32 testSimplify(path, true, out, bitmap);
36 SkPath path, out; local
43 testSimplify(path, true, out, bitmap);
47 SkPath path, out; local
54 testSimplify(path, true, out, bitmap);
55 drawAsciiPaths(path, out, true);
59 SkPath path, out; local
73 SkPath path, out; local
87 SkPath path, out; local
101 SkPath path, out; local
115 SkPath path, out; local
129 SkPath path, out; local
143 SkPath path, out; local
157 SkPath path, out; local
171 SkPath path, out; local
186 SkPath path, out; local
200 SkPath path, out; local
214 SkPath path, out; local
228 SkPath path, out; local
    [all...]
SimplifyRect4x4_Test.cpp 41 SkPath path, out; local
159 testSimplifyx(path, false, out, state, pathStr);
162 testSimplifyx(path, true, out, state, pathStr);
  /external/chromium_org/third_party/skia/src/core/
SkMaskGamma.cpp 115 float out = dstConvert.fromLuma(dstGamma, linOut); local
118 float result = (out - dst) / (src - dst);
  /external/chromium_org/third_party/skia/tests/
PathOpsSimplifyDegenerateThreadedTest.cpp 14 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter?
37 SkPath path, out; local
59 testSimplify(path, false, out, state, pathStr);
64 testSimplify(path, true, out, state, pathStr);
PathOpsSimplifyQuadThreadedTest.cpp 15 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter?
39 SkPath path, out; local
64 testSimplify(path, false, out, state, pathStr);
69 testSimplify(path, true, out, state, pathStr);
PathOpsSimplifyQuadralateralsThreadedTest.cpp 15 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter?
39 SkPath path, out; local
66 testSimplify(path, false, out, state, pathStr);
71 testSimplify(path, true, out, state, pathStr);

Completed in 630 milliseconds

<<11121314151617181920>>