HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 1726 - 1750 of 3019) sorted by null

<<61626364656667686970>>

  /external/chromium_org/ui/gfx/codec/
png_codec.cc 168 // Bounds check. When the image is unreasonably big, we'll error out and
477 explicit PngEncoderState(std::vector<unsigned char>* o) : out(o) {}
478 std::vector<unsigned char>* out; member in struct:gfx::__anon520::PngEncoderState
484 DCHECK(state->out);
486 size_t old_size = state->out->size();
487 state->out->resize(old_size + size);
488 memcpy(&(*state->out)[old_size], data, size);
561 unsigned char* out, bool* is_opaque);
  /external/chromium_org/ui/gfx/
color_analysis.cc 137 uint32_t* out = buffer; local
142 *out++ = SkUnPreMultiply::PMColorToColor(*in++);
144 *out++ = *in++;
305 // Figure out which cluster this color is closest to in RGB space.
334 // Loop through the clusters to figure out which cluster has an appropriate
517 // We will figure out min/max in a preprocessing step and adjust
  /external/emma/core/java12/com/vladium/emma/report/
ReportProperties.java 257 // renormalize the out dir and file combination:
328 final int [] out = new int [1]; local
333 if (! COLUMNS.get (columnName, out))
342 _columns.add (out [0]);
356 final int [] out = new int [1]; local
392 COLUMNS.get (columnName, out);
394 _sort.add (out [0]); // sort attribute ID
405 final int [] out = new int [1]; local
425 nfe.printStackTrace (System.out);
434 COLUMNS.get (columnName, out);
    [all...]
  /external/emma/lib/internal/
stamptool.jar 
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/xml/
XmlMessageBuilder.java 417 StringBuffer out = new StringBuffer(); local
420 out.append("<" + OUTER_FIELD_PAYLOAD + ">\n");
423 out.append("<" + OUTER_FIELD_STATUS + ">");
424 out.append(status);
425 out.append("</" + OUTER_FIELD_STATUS + ">\n");
429 out.append("<" + OUTER_FIELD_MSG_ID + ">");
430 out.append(mLastMessageId);
431 out.append("</" + OUTER_FIELD_MSG_ID + ">\n");
437 out.append("<" + OUTER_FIELD_TYPE + ">");
438 out.append(msgType)
    [all...]
  /external/icu/icu4c/source/common/
rbbi.cpp 850 // to carry out this operation
933 // out-of-range indexes are never boundary positions
1716 int32_t out = 0; local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cnmdptst.c 639 UChar *out = NULL; local
650 out=(UChar*)malloc(sizeof(UChar) * (lneed+1) );
652 unum_formatDouble(nf, x, out, lneed+1, &pos, &status);
658 /*printf("%f format with %d fraction digits to %s\n", x, maxFractionDigits, austrdup(out) );*/
661 if (u_strcmp(out, res) != 0)
664 if(out != NULL) {
665 free(out);
1037 UChar *out = NULL; local
    [all...]
  /external/icu/icu4c/source/test/intltest/
convtest.cpp 637 // Unfortunately, there are no good, direct set methods for finding out whether there are strings
646 UnicodeString out; local
651 diffSet.toPattern(out, TRUE);
652 if(out.length()>100) {
653 out.replace(100, 0x7fffffff, ellipsis, LENGTHOF(ellipsis));
657 errln(out);
663 diffSet.toPattern(out, TRUE);
664 if(out.length()>100) {
665 out.replace(100, 0x7fffffff, ellipsis, LENGTHOF(ellipsis));
669 errln(out);
    [all...]
  /external/icu/icu4c/source/test/perf/howExpensiveIs/
howExpensiveIs.cpp 36 FILE *out = NULL; variable
107 out=fopen(outName,"w");
108 if(out==NULL) {
114 fprintf(out, "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\n");
115 fprintf(out, "<tests icu=\"%s\">\n", U_ICU_VERSION);
116 fprintf(out, "<!-- %s -->\n", U_COPYRIGHT_STRING);
131 if(out!=NULL) {
133 udbg_writeIcuInfo(out);
135 fprintf(out, "</tests>\n");
136 fclose(out);
    [all...]
  /external/kernel-headers/original/uapi/rdma/
ib_user_cm.h 29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
71 __u16 out; member in struct:ib_ucm_cmd_hdr
  /external/libopus/src/
opus_demo.c 25 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
243 short *in, *out; local
596 out = (short*)malloc(max_frame_size*channels*sizeof(short));
671 fprintf(stderr, "Ran out of input, "
781 output_samples = opus_decode(dec, lost ? NULL : data[toggle], len[toggle], out, output_samples, 1);
785 output_samples = opus_decode(dec, data[1-toggle], len[1-toggle], out, output_samples, 0);
788 output_samples = opus_decode(dec, lost ? NULL : data[toggle], len[toggle], out, output_samples, 0);
802 s=out[i+(skip*channels)];
    [all...]
  /external/libpng/contrib/libtests/
makepng.c 801 fprintf(stderr, "%s: out of memory loading file\n", name);
843 png_bytep out = *profile; local
846 memset(out, *endptr, result);
852 memcpy(out, endptr, len);
853 out += len;
856 memcpy(out, endptr, size);
1148 fprintf(stderr, "--insert %s: out of memory allocating %d parameters\n",
    [all...]
  /external/libvpx/libvpx/vp9/common/mips/dspr2/
vp9_itrans16_dspr2.c 1222 int32_t out; local
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_idct.c 120 int16_t out[4 * 4]; local
121 int16_t *outptr = out;
135 temp_in[j] = out[j * 4 + i];
146 int16_t out = dct_const_round_shift(input[0] * cospi_16_64); local
147 out = dct_const_round_shift(out * cospi_16_64);
148 a1 = ROUND_POWER_OF_TWO(out, 4);
205 int16_t out[8 * 8]; local
206 int16_t *outptr = out;
220 temp_in[j] = out[j * 8 + i]
231 int16_t out = dct_const_round_shift(input[0] * cospi_16_64); local
293 int16_t out[4 * 4]; local
401 int16_t out[8 * 8]; local
425 int16_t out[8 * 8] = { 0 }; local
615 int16_t out[16 * 16]; local
819 int16_t out[16 * 16]; local
843 int16_t out[16 * 16] = { 0 }; local
870 int16_t out = dct_const_round_shift(input[0] * cospi_16_64); local
1248 int16_t out[32 * 32]; local
1285 int16_t out[32 * 32] = {0}; local
1313 int16_t out = dct_const_round_shift(input[0] * cospi_16_64); local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_dct.c 57 int16_t *out = intermediate; local
87 out[0] = fdct_round_shift(temp1);
88 out[2] = fdct_round_shift(temp2);
91 out[1] = fdct_round_shift(temp1);
92 out[3] = fdct_round_shift(temp2);
95 out += 4;
97 // Setup in/out for next pass.
99 out = output;
163 int16_t out[4 * 4]; local
164 int16_t *outptr = &out[0]
325 int16_t *out = intermediate; local
575 int16_t out[64]; local
972 int16_t out[256]; local
    [all...]
  /external/libxml2/
uri.c 1330 xmlChar *out; local
1410 char *cur, *out; local
1610 char *ret, *out; local
1671 int len, out; local
1881 int ret, len, indx, cur, out; local
    [all...]
  /external/lzma/Java/SevenZip/
LzmaBench.java 265 System.out.print(" ");
266 System.out.print(s);
272 System.out.print(" MIPS");
283 System.out.print(" KB/s ");
298 System.out.println("\nError: dictionary size for benchmark must be >= 18 (256 KB)");
301 System.out.print("\n Compressing Decompressing\n\n");
375 System.out.print(" ");
377 System.out.println();
384 System.out.println("---------------------------------------------------");
386 System.out.print(" ");
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_setup_tri.c 23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
701 int out = 0; local
707 out |= (planeout >> 31);
711 if (out) {
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_driver.h 18 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
120 struct nv50_ir_varying out[PIPE_MAX_SHADER_OUTPUTS]; member in struct:nv50_ir_prog_info
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_wm_fp.c 23 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
165 printf("%s: out of temporaries\n", __FILE__);
249 * and brw_wm_pass*.c wants to optimize them out by shuffling references around
293 /* Emit the out calculations, and hold onto the results. Use
604 /* This will get optimized out in general, but it ensures that we
683 struct prog_instruction *out; local
695 out = emit_op(c, OPCODE_MOV,
701 out->SrcReg[0].Negate = NEGATE_NONE;
702 out->SrcReg[0].Abs = 1;
1090 struct prog_instruction *out; local
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_vertex_generic.c 22 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
53 GLfloat *out = (GLfloat *)v; local
56 out[0] = vp[0] * in[0] + vp[12];
57 out[1] = vp[5] * in[1] + vp[13];
58 out[2] = vp[10] * in[2] + vp[14];
59 out[3] = in[3];
65 GLfloat *out = (GLfloat *)v; local
68 out[0] = vp[0] * in[0] + vp[12];
69 out[1] = vp[5] * in[1] + vp[13];
70 out[2] = vp[10] * in[2] + vp[14]
77 GLfloat *out = (GLfloat *)v; local
89 GLfloat *out = (GLfloat *)v; local
101 GLfloat *out = (GLfloat *)v; local
112 GLfloat *out = (GLfloat *)v; local
123 GLfloat *out = (GLfloat *)v; local
134 GLfloat *out = (GLfloat *)v; local
144 GLfloat *out = (GLfloat *)v; local
158 GLfloat *out = (GLfloat *)(v); local
169 GLfloat *out = (GLfloat *)(v); local
180 GLfloat *out = (GLfloat *)(v); local
191 GLfloat *out = (GLfloat *)(v); local
202 GLfloat *out = (GLfloat *)(v); local
219 GLfloat *out = (GLfloat *)(v); local
229 GLfloat *out = (GLfloat *)(v); local
239 GLfloat *out = (GLfloat *)(v); local
250 GLfloat *out = (GLfloat *)(v); local
259 GLfloat *out = (GLfloat *)(v); local
268 GLfloat *out = (GLfloat *)(v); local
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
AudioSpecificConfig.java 512 int out = 4; local
514 out += gaSpecificConfigSize();
518 return out;
522 ByteBuffer out = ByteBuffer.allocate(serializedSize()); local
523 IsoTypeWriter.writeUInt8(out, 5);
524 IsoTypeWriter.writeUInt8(out, serializedSize() - 2);
525 BitWriterBuffer bwb = new BitWriterBuffer(out);
535 return out;
    [all...]
  /external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
WebSocketFrame.java 172 //System.out.println(Integer.toBinaryString(read) + "/" + read + "/" + Integer.toHexString(read));
240 public void write(OutputStream out) throws IOException {
246 out.write(header);
250 out.write(isMasked() ? 0x80 | (byte) _payloadLength : (byte) _payloadLength);
252 out.write(isMasked() ? 0xFE : 126);
253 out.write(_payloadLength >>> 8);
254 out.write(_payloadLength);
256 out.write(isMasked() ? 0xFF : 127);
257 out.write(_payloadLength >>> 56 & 0); //integer only contains 31 bit
258 out.write(_payloadLength >>> 48 & 0)
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
HttpResponseCache.java 359 // Since we don't override "write(int oneByte)", we can write directly to "out"
361 out.write(buffer, offset, length);
490 OutputStream out = editor.newOutputStream(ENTRY_METADATA); local
491 Writer writer = new BufferedWriter(new OutputStreamWriter(out, UTF_8));
  /external/opencv/cv/src/
cvinpaint.cpp 37 // or tort (including negligence or otherwise) arising in any way out of
280 icvTeleaInpaintFMM(const CvMat *f, CvMat *t, CvMat *out, int range, CvPriorityQueueFloat *Heap ) {
284 if (CV_MAT_CN(out->type)==3) {
352 gradI.x=(float)((CV_MAT_3COLOR_ELEM(*out,uchar,km,lp+1,color)-CV_MAT_3COLOR_ELEM(*out,uchar,km,lm-1,color)))*2.0f;
354 gradI.x=(float)((CV_MAT_3COLOR_ELEM(*out,uchar,km,lp+1,color)-CV_MAT_3COLOR_ELEM(*out,uchar,km,lm,color)));
358 gradI.x=(float)((CV_MAT_3COLOR_ELEM(*out,uchar,km,lp,color)-CV_MAT_3COLOR_ELEM(*out,uchar,km,lm-1,color)));
365 gradI.y=(float)((CV_MAT_3COLOR_ELEM(*out,uchar,kp+1,lm,color)-CV_MAT_3COLOR_ELEM(*out,uchar,km-1,lm,color)))*2.0f
731 CvMat *mask = 0, *band = 0, *f = 0, *t = 0, *out = 0; local
    [all...]

Completed in 682 milliseconds

<<61626364656667686970>>