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

<<31323334353637383940>>

  /external/chromium_org/third_party/icu/source/tools/genrb/
wrtjava.c 83 static FileStream* out=NULL; variable
246 write_tabs(out);
283 T_FileStream_write(out,"\"",1);
285 T_FileStream_write(out,current,add);
286 T_FileStream_write(out,"\" +\n",4);
287 write_tabs(out);
289 T_FileStream_write(out,current,bufLen-len);
294 T_FileStream_write(out,"\"",1);
295 T_FileStream_write(out, buf,bufLen);
298 T_FileStream_write(out,"\",\n",3)
    [all...]
  /external/chromium_org/third_party/icu/source/tools/toolutil/
pkg_genc.c 59 write8(FileStream *out, uint8_t byte, uint32_t column);
62 write32(FileStream *out, uint32_t byte, uint32_t column);
66 write8str(FileStream *out, uint8_t byte, uint32_t column);
266 FileStream *in, *out; local
276 out=T_FileStream_open(bufferStr, "w");
277 if(out==NULL) {
307 T_FileStream_writeLine(out, bufferStr);
308 T_FileStream_writeLine(out, assemblyHeader[assemblyHeaderIndex].beginLine);
322 column = write32(out, buffer[i], column);
326 T_FileStream_writeLine(out, "\n")
351 FileStream *in, *out; local
773 FileStream *in, *out; local
    [all...]
  /external/chromium_org/third_party/libwebp/dec/
webp.c 273 // Fetch '*width', '*height', '*has_alpha' and fill out 'headers' based on
416 // fill out headers, ignore width/height/has_alpha.
657 uint8_t* const out = Decode(MODE_YUV, data, data_size, local
660 if (out != NULL) {
668 return out;
786 return 0; // out of frame boundary error
  /external/chromium_org/third_party/libwebp/utils/
quant_levels_dec.c 84 uint16_t* const out = p->end_; local
92 out[x] = new_value - cur[x]; // vertical sum of 'r' pixels.
110 uint16_t* const out = p->average_; local
118 out[x] = (delta * scale) >> FIX;
122 out[x] = (delta * scale) >> FIX;
127 out[x] = (delta * scale) >> FIX;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/translate/
translate_generic.c 23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
100 DSTTYPE *out = (DSTTYPE *)ptr; \
103 out[i] = TO(in[i]); \
242 ubyte *out = (ubyte *)ptr; local
243 out[0] = TO_8_UNORM(in[3]);
244 out[1] = TO_8_UNORM(in[0]);
245 out[2] = TO_8_UNORM(in[1]);
246 out[3] = TO_8_UNORM(in[2]);
253 ubyte *out = (ubyte *)ptr; local
254 out[2] = TO_8_UNORM(in[0])
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_rast_tri.c 23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
261 struct { unsigned mask:16; unsigned i:8; unsigned j:8; } out[16]; local
341 out[nr].i = i;
342 out[nr].j = j;
343 out[nr].mask = mask;
356 x + 4 * out[i].j,
357 y + 4 * out[i].i,
358 0xffff & ~out[i].mask);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_from_sm4.cpp 59 struct nv50_ir_varying out[3][PIPE_MAX_SHADER_OUTPUTS]; member in class:__anon18464::Converter
739 info.out[r].mask |= ~sm4.params_out[i].ReadWriteMask;
740 info.out[r].id = r;
741 if (info.out[r].regular) // already assigned semantic name/index
743 info.out[r].regular = 1;
744 info.out[r].patch = 0;
751 info.out[r].sn = TGSI_SEMANTIC_COLOR;
752 info.out[r].si = info.prop.fp.numColourResults++;
754 info.out[r].sn = TGSI_SEMANTIC_GENERIC;
755 info.out[r].si = n++
    [all...]
nv50_ir_ssa.cpp 18 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
230 BasicBlock *out = BasicBlock::get(ei.getNode()); local
231 if (out == bb)
233 if (out->cfg.visit(seq))
234 buildLiveSetsPreSSA(out, seq);
236 bb->liveSet = out->liveSet;
238 bb->liveSet |= out->liveSet;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xa/
xa_tgsi.c 20 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
50 * OUT[0] = vertex pos
51 * OUT[1] = src tex coord | solid fill color
52 * OUT[2] = mask tex coord
53 * OUT[3] = dst tex coord
65 * OUT[0] = color
144 struct ureg_dst out,
183 ureg_TEX(ureg, out, TGSI_TEXTURE_1D, ureg_src(temp2), sampler);
195 struct ureg_dst out,
251 ureg_TEX(ureg, out, TGSI_TEXTURE_1D, ureg_src(temp2), sampler)
325 struct ureg_dst out = ureg_DECL_output(ureg, local
436 struct ureg_dst out; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
xorg_exa_tgsi.c 26 * OUT[0] = vertex pos
27 * OUT[1] = src tex coord | solid fill color
28 * OUT[2] = mask tex coord
29 * OUT[3] = dst tex coord
41 * OUT[0] = color
121 struct ureg_dst out,
167 ureg_TEX(ureg, out,
181 struct ureg_dst out,
252 ureg_TEX(ureg, out, TGSI_TEXTURE_1D,
329 struct ureg_dst out = ureg_DECL_output(ureg local
462 struct ureg_dst out; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/vbo/
vbo_split_copy.c 22 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
83 GLuint out; member in struct:copy_context::__anon19217
288 copy->vert_cache[slot].out = copy->dstbuf_nr++;
298 /* printf(" --> emit %d\n", copy->vert_cache[slot].out); */
299 copy->dstelt[copy->dstelt_nr++] = copy->vert_cache[slot].out;
499 /* Figure out the maximum allowed vertex buffer size:
  /external/chromium_org/third_party/opus/src/src/
mlp_train.c 24 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
140 float *in, *out; local
142 out = outputs + s*outDim;
156 error[i] = out[i] - netOut[i];
  /external/chromium_org/third_party/re2/util/
pcre.cc 354 string out; local
375 out.push_back((*str)[start]);
389 out.append(*str, start, matchstart - start);
390 pattern.Rewrite(&out, rewrite, *str, vec, matches);
400 out.append(*str, start, str->length() - start);
401 swap(out, *str);
408 string *out) {
413 out->clear();
414 return pattern.Rewrite(out, rewrite, text, vec, matches);
514 // is filled, but we miss out on the positions of the extra subpatterns
    [all...]
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/
SkPdfNativeTokenizer.cpp 126 unsigned char* out) {
128 bool hasOut = (out != NULL);
143 if (hasOut) { *out = kLF_PdfWhiteSpace; }
144 out++;
149 if (hasOut) { *out = kCR_PdfWhiteSpace; }
150 out++;
155 if (hasOut) { *out = kHT_PdfWhiteSpace; }
156 out++;
162 if (hasOut) { *out = kBackspace_PdfSpecial; }
163 out++
256 unsigned char* out = (unsigned char*)allocator->alloc(outLength); local
404 unsigned char* out = (unsigned char*)allocator->alloc(outLength); local
532 unsigned char* out = (unsigned char*)allocator->alloc(outLength); local
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkRTree.cpp 15 static inline void join_no_empty_check(const SkIRect& joinWith, SkIRect* out);
132 Node* out = static_cast<Node*>(fNodes.allocThrow(fNodeSize)); local
133 out->fNumChildren = 0;
134 out->fLevel = level;
135 return out;
327 Branch out = (*branches)[0]; local
329 return out;
481 // Expand 'out' to include 'joinWith'
482 static inline void join_no_empty_check(const SkIRect& joinWith, SkIRect* out) {
485 if (joinWith.fLeft < out->fLeft) { out->fLeft = joinWith.fLeft;
    [all...]
  /external/chromium_org/third_party/skia/tools/
create_test_font.cpp 130 FILE* out = fopen(outPath.c_str(), "w"); local
131 fprintf(out, "%s%s\n\n", gHeader, SkOSPath::SkBasename(__FILE__).c_str());
132 return out;
148 static void output_fixed(SkScalar num, int emSize, SkString* out) {
150 out->appendf("0x%08x,", hex);
151 *out += (int) last_line_length(*out) >= kMaxLineLength ? '\n' : ' ';
154 static void output_scalar(SkScalar num, int emSize, SkString* out) {
157 out->appendS32((int) num);
167 out->appendf("%sf", str.c_str())
445 FILE* out = font_header(); local
    [all...]
  /external/chromium_org/third_party/speex/libspeex/
sb_celp.c 28 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
835 static void sb_decode_lost(SBDecState *st, spx_word16_t *out, int dtx, char *stack)
857 out[i+st->frame_size] = speex_rand(st->last_ener, &st->seed);
859 iir_mem16(out+st->frame_size, st->interp_qlpc, out+st->frame_size, st->frame_size, st->lpcSize,
864 qmf_synth(out, out+st->frame_size, h0, out, st->full_frame_size, QMF_ORDER, st->g0_mem, st->g1_mem, stack);
887 spx_word16_t *out = (spx_word16_t*)vout; local
895 low_innov_alias = out+st->frame_size
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_processing/agc/
digital_agc.c 33 // in = 10*log10(lvl); out = 20*log10(gains/65536);
34 // subplot(121); plot(in, out); axis([-30, 0, -5, 20]); grid on; xlabel('Input (dB)'); ylabel('Gain (dB)');
35 // subplot(122); plot(in, in+out); axis([-30, 0, -30, 5]); grid on; xlabel('Input (dB)'); ylabel('Output (dB)');
270 // start out with 0 dB gain
299 const int16_t *in_near_H, int16_t *out,
338 if (in_near != out)
341 memcpy(out, in_near, 10 * L * sizeof(int16_t));
351 logratio = WebRtcAgc_ProcessVad(&stt->vadNearend, out, L * 10);
417 nrg = WEBRTC_SPL_MUL_16_16(out[k * L + n], out[k * L + n])
673 int32_t out, nrg, tmp32, tmp32b; local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_processing/ns/
nsx_core_mips.c 333 int16_t* out,
340 int *outBuf = (int*)out;
506 // For the noise supression process, synthesis, read out fully processed
518 int16_t *out = out_frame; local
598 "sh %[r0], 0(%[out]) \n\t"
599 "sh %[r2], 2(%[out]) \n\t"
600 "sh %[r4], 4(%[out]) \n\t"
601 "sh %[r6], 6(%[out]) \n\t"
605 "addiu %[out], %[out], 8 \n\t
869 int16_t *out = &inst->real[0]; local
    [all...]
  /external/chromium_org/tools/imagediff/
image_diff_png.cc 108 void (*row_converter)(const unsigned char* in, int w, unsigned char* out,
155 // Bounds check. When the image is unreasonably big, we'll error out and
367 explicit PngEncoderState(std::vector<unsigned char>* o) : out(o) {}
368 std::vector<unsigned char>* out; member in struct:image_diff_png::__anon21117::PngEncoderState
374 DCHECK(state->out);
376 size_t old_size = state->out->size();
377 state->out->resize(old_size + size);
378 memcpy(&(*state->out)[old_size], data, size);
458 unsigned char* out, bool* is_opaque);
  /external/chromium_org/ui/gfx/
canvas.cc 140 // have a dot pattern out of phase to each other).
170 // out of scope.
212 SkRect out; local
213 if (canvas_->getClipBounds(&out)) {
214 *bounds = ToEnclosingRect(SkRectToRectF(out));
  /external/clang/test/SemaCXX/
typo-correction.cpp 95 unknown_type_test::stream_out out; // expected-error{{no type named 'stream_out' in namespace 'unknown_type_test'; did you mean 'StreamOut'?}} variable
106 stream_out out; // expected-error{{unknown type name 'stream_out'; did you mean 'StreamOut'?}} member in namespace:__anon23987
119 void TestRedecl::add_in(int i) {} // expected-error{{out-of-line definition of 'add_in' does not match any declaration in 'TestRedecl'; did you mean 'add_it'?}}
173 void Child::add_types(int value) {} // expected-error{{out-of-line definition of 'add_types' does not match any declaration in 'Child'}}
  /external/deqp/modules/egl/
teglChooseConfigTests.cpp 407 std::vector<std::pair<EGLenum, EGLint> > out; local
420 out.push_back(std::make_pair(spec.attribute, spec.getValue(rnd)));
423 return out;
teglQuerySurfaceTests.cpp 675 std::vector<EGLint> out; local
686 out.push_back(info.configId);
689 return out;
  /external/deqp/modules/gles31/functional/
es31fShaderPackingFunctionTests.cpp 199 void* out = &outputs[0]; local
202 m_executor->execute((int)inputs.size(), &in, &out);
287 void* out = &outputs[0]; local
290 m_executor->execute((int)inputs.size(), &in, &out);
390 void* out = &outputs[0]; local
393 m_executor->execute((int)inputs.size(), &in, &out);
478 void* out = &outputs[0]; local
481 m_executor->execute((int)inputs.size(), &in, &out);
586 void* out = &outputs[0]; local
589 m_executor->execute((int)inputs.size(), &in, &out);
689 void* out = &outputs[0]; local
801 void* out = &outputs[0]; local
895 void* out = &outputs[0]; local
1010 void* out = &outputs[0]; local
1104 void* out = &outputs[0]; local
    [all...]

Completed in 979 milliseconds

<<31323334353637383940>>