/external/chromium_org/third_party/libwebp/dsp/ |
enc.c | 49 int16_t out[16]; local 51 VP8FTransform(ref + VP8DspScan[j], pred + VP8DspScan[j], out); 55 const int v = abs(out[k]) >> 3; // TODO(skal): add rounding? 133 static void FTransform(const uint8_t* src, const uint8_t* ref, int16_t* out) { 155 out[0 + i] = (a0 + a1 + 7) >> 4; // 12b 156 out[4 + i] = ((a2 * 2217 + a3 * 5352 + 12000) >> 16) + (a3 != 0); 157 out[8 + i] = (a0 - a1 + 7) >> 4; 158 out[12+ i] = ((a3 * 2217 - a2 * 5352 + 51000) >> 16); 162 static void FTransformWHT(const int16_t* in, int16_t* out) { 185 out[ 0 + i] = b0 >> 1; // 15 [all...] |
lossless_sse2.c | 72 int16_t out[8]; local 73 _mm_storeu_si128((__m128i*)out, diff); 74 pa_minus_pb = out[0] + out[1] + out[2] + out[3]; 168 const __m128i out = _mm_sub_epi8(in, in_0g0g); local 169 _mm_storeu_si128((__m128i*)&argb_data[i], out); 184 const __m128i out = _mm_add_epi8(in, in_0g0g); local 185 _mm_storeu_si128((__m128i*)&argb_data[i], out); 239 const __m128i out = _mm_or_si128(_mm_or_si128(ag, r_new_shifted), b_new); local 278 const __m128i out = _mm_or_si128(_mm_or_si128(ag, r_new_shifted), b_new); local 292 __m128i* out = (__m128i*)dst; local 321 __m128i* out = (__m128i*)dst; local 356 __m128i* out = (__m128i*)dst; local [all...] |
/external/chromium_org/third_party/libwebp/enc/ |
frame.c | 477 const uint8_t* const out = it->yuv_out_; local 479 enc->sse_[0] += VP8SSE16x16(in + Y_OFF, out + Y_OFF); 480 enc->sse_[1] += VP8SSE8x8(in + U_OFF, out + U_OFF); 481 enc->sse_[2] += VP8SSE8x8(in + V_OFF, out + V_OFF);
|
/external/chromium_org/third_party/libxml/src/ |
c14n.c | 425 * we do not want to print it out 458 * we do not want to print it out 564 * Prints out canonical namespace axis of the current node to the 661 * print out all elements from list 678 * Prints out exclusive canonical namespace axis of the current node to the 838 * print out all elements from list 923 * Prints out canonical attribute urrent node to the 1096 * Prints out canonical attribute axis of the current node to the 2149 xmlChar *out = NULL; local [all...] |
encoding.c | 77 * Handle an out of memory condition 156 * @out: a pointer to an array of bytes to store the result 157 * @outlen: the length of @out 162 * block of chars out. 169 asciiToUTF8(unsigned char* out, int *outlen, 171 unsigned char* outstart = out; 174 unsigned char* outend = out + *outlen; 179 while ((in < inend) && (out - outstart + 5 < *outlen)) { 182 if (out >= outend) 185 *out++ = c 569 unsigned short* out = (unsigned short*) outb; local 811 unsigned short* out = (unsigned short*) outb; local [all...] |
nanohttp.c | 144 char *out; /* buffer sent (zero terminated) */ member in struct:xmlNanoHTTPCtxt 177 * Handle an out of memory condition 418 if (ctxt->out != NULL) xmlFree(ctxt->out); 972 /* Time out */ 973 __xmlIOErr(XML_FROM_HTTP, 0, "Connect attempt timed out"); [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/ |
draw_llvm.c | 23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 462 LLVMValueRef out; local 475 out = LLVMBuildLoad(builder, outputs[attrib][chan], ""); 476 out = lp_build_clamp(&bld, out, bld.zero, bld.one); 477 LLVMBuildStore(builder, out, outputs[attrib][chan]); 683 LLVMValueRef out = LLVMBuildLoad(builder, outputs[attrib][chan], ""); local 684 lp_build_name(out, "output%u.%c", attrib, "xyzw"[chan]); 691 lp_build_print_value(gallivm, "val = ", out); 693 soa[chan] = out; 815 LLVMValueRef out = LLVMBuildLoad(builder, outputs[0][i], ""); \/*x0 x1 .. xn*\/ local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
lp_state_fs.c | 24 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 399 * write that out. 422 LLVMValueRef out = LLVMBuildLoad(builder, outputs[attrib][chan], ""); local 423 lp_build_name(out, "color%u.%u.%c", i, attrib, "rgba"[chan]); 424 LLVMBuildStore(builder, out, color[cbuf][chan]); 638 * write that out. 661 LLVMValueRef out = LLVMBuildLoad(builder, outputs[attrib][chan], ""); local 665 lp_build_name(out, "color%u.%c", attrib, "rgba"[chan]); 666 LLVMBuildStore(builder, out, color_ptr); [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/codegen/ |
nv50_ir_emit_nvc0.cpp | 18 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF 2088 BasicBlock *out = BasicBlock::get(ei.getNode()); local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/ |
renderer.c | 23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 266 struct ureg_dst out; local 270 out = ureg_DECL_output(ureg, TGSI_SEMANTIC_POSITION, 0); 273 ureg_MOV(ureg, ureg_writemask(out, TGSI_WRITEMASK_Z), imm); 285 struct ureg_dst out; local 289 out = ureg_DECL_output(ureg, TGSI_SEMANTIC_COLOR, 0); 292 ureg_MOV(ureg, out, imm); [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/math/ |
m_matrix.c | 21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 355 GLfloat *out = mat->inv; local 452 MAT(out,0,0) = r0[4]; MAT(out,0,1) = r0[5], 453 MAT(out,0,2) = r0[6]; MAT(out,0,3) = r0[7], 454 MAT(out,1,0) = r1[4]; MAT(out,1,1) = r1[5], 455 MAT(out,1,2) = r1[6]; MAT(out,1,3) = r1[7] 483 GLfloat *out = mat->inv; local 555 GLfloat *out = mat->inv; local 651 GLfloat *out = mat->inv; local 684 GLfloat *out = mat->inv; local [all...] |
/external/chromium_org/third_party/openssl/openssl/apps/ |
req.c | 35 * The word 'cryptographic' can be left out if the rouines from the library 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 111 * -out arg - output file - default stdout 113 * -noout - don't print stuff out. 114 * -text - print out human readable text. 172 BIO *in=NULL,*out=NULL; local 272 else if (strcmp(*argv,"-out") == 0) 410 BIO_printf(bio_err," -out arg output file\n"); 611 out=BIO_new(BIO_s_file()); 612 if ((in == NULL) || (out == NULL) [all...] |
x509.c | 35 * The word 'cryptographic' can be left out if the rouines from the library 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 98 " -out arg - output file - default stdout\n", 115 " -purpose - print out certificate purposes\n", 143 " -C - print out C code forms\n", 180 BIO *out=NULL; local 315 else if (strcmp(*argv,"-out") == 0) 676 out=BIO_new(BIO_s_file()); 677 if (out == NULL) 684 BIO_set_fp(out,stdout,BIO_NOCLOSE) [all...] |
/external/chromium_org/third_party/openssl/openssl/ssl/ |
t1_enc.c | 35 * The word 'cryptographic' can be left out if the rouines from the library 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 102 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 159 unsigned char *out, int olen) 220 if (!EVP_DigestSignFinal(&ctx,out,&j)) 222 out+=j; 232 memcpy(out,A1,olen); 829 unsigned char ad[13], *seq, *in, *out, nonce[16]; local 870 out = rec->data; 886 memcpy(out, ad, aead->variable_nonce_len) [all...] |
/external/chromium_org/third_party/re2/re2/ |
parse.cc | 818 // Round 1: Factor out common literal prefixes. 823 int out = 0; local 826 // and that space has been reused for sub[0:out] (out <= start). 852 // Factor out common string and append factored expression to sub[0:out]. 857 sub[out++] = sub[start]; 867 sub[out++] = Concat(x, 2, altflags); 878 n = out; 880 // Round 2: Factor out common complex prefixes [all...] |
/external/chromium_org/third_party/skia/experimental/Intersection/ |
EdgeWalker_TestUtility.cpp | 249 char out[256]; local 251 if (bitWidth * 2 + 1 >= (int) sizeof(out)) { 255 if (bitHeight >= (int) sizeof(out)) { 274 char* outPtr = out; 283 SkDebugf("%s\n", out); 379 bool testSimplify(const SkPath& path, bool fill, SkPath& out, SkBitmap& bitmap) { 383 simplify(path, fill, out); 387 return comparePaths(path, out, bitmap) == 0; 390 bool testSimplifyx(SkPath& path, bool useXor, SkPath& out, State4& state, 397 simplifyx(path, out); 422 SkPath out; local 438 SkPath out; local [all...] |
/external/chromium_org/third_party/sqlite/src/src/ |
os_os2.c | 28 ** problems to worry about than running out of memory. So there is not 38 ** code. Better to leave the code out, we think. 642 char *out = (char *)calloc( CCHMAXPATH, 1 ); local 644 if( !out ) 652 return out; /* if conversion fails, return the empty string */ 655 UniStrFromUcs( uclCp, out, tempPath, CCHMAXPATH ); 657 return out; 671 char *out = (char *)calloc( CCHMAXPATH, 1 ); local 673 if( !out ) 681 return out; /* if conversion fails, return the empty string * [all...] |
/external/chromium_org/third_party/webrtc/voice_engine/test/android/android_test/src/org/webrtc/voiceengine/test/ |
AndroidTest.java | 50 // VoE level (0-255), corresponds to level 4 out of 5
649 FileOutputStream out = null;
local 651 out = new FileOutputStream(fr);
668 out.write(recBuffer);
960 // System.out.println(e.getMessage()); [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/frontends/yasm/ |
yasm.c | 24 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 252 FILE *out = NULL; local 262 out = stdout; 268 /* Default to yasm.out if no obj filename specified */ 269 obj_filename = yasm__xstrdup("yasm.out"); 274 obj_filename = yasm__xstrdup("yasm.out"); 277 cur_objfmt_module->extension, "yasm.out"); 282 out = open_file(obj_filename, "wt"); 283 if (!out) 320 fputs(preproc_buf, out); 1258 char *out, *outext; local [all...] |
/external/chromium_org/tools/traceline/traceline/ |
main.cc | 32 std::string out; local 33 out.push_back('"'); 40 out.push_back('\\'); out.push_back(c); 44 out.push_back('\\'); out.push_back('x'); 45 out.push_back(hextable[c >> 4]); out.push_back(hextable[c & 0xf]); 48 out.push_back(c); 53 out.push_back('"') [all...] |
/external/chromium_org/ui/base/clipboard/ |
clipboard_aurax11.cc | 227 // Private implementation of our X11 integration. Keeps X11 headers out of the 268 // the data out of |clipboard_selection_| or |primary_selection_|. If the 439 std::vector< ::Atom> out; local 446 out.push_back(it->first); 464 out.push_back(atom_array[i]); 483 out.push_back(*it); 489 return TargetList(out, &atom_cache_);
|
/external/chromium_org/ui/views/layout/ |
grid_layout.cc | 833 gfx::Size out; local 834 SizeRowsAndColumns(false, 0, 0, &out); 835 out.SetSize(std::max(out.width(), minimum_size_.width()), 836 std::max(out.height(), minimum_size_.height())); 837 return out; [all...] |
/external/deqp/modules/gles3/functional/ |
es3fFboRenderTest.cpp | 164 std::vector<std::string> out; local 169 out.push_back("GL_EXT_color_buffer_half_float"); 175 out.push_back("GL_EXT_color_buffer_half_float"); 182 out.push_back("GL_EXT_color_buffer_float"); 188 return out; 224 std::ostringstream out; local 229 out << sep; 230 out << *iter; 233 return out.str(); [all...] |
/external/deqp/modules/gles31/functional/ |
es31fShaderIntegerFunctionTests.cpp | 773 const deUint32 out = ((const deUint32*)outputs[0])[compNdx]; local 778 if (out != ref) 841 const deInt32 out = ((const deUint32*)outputs[0])[compNdx]; local 846 if ((out&cmpMask) != (ref&cmpMask)) 898 const deInt32 out = ((const deUint32*)outputs[0])[compNdx]; local 901 if ((out&cmpMask) != (ref&cmpMask)) 947 const int out = ((const int*)outputs[0])[compNdx]; local 1007 const int out = ((const int*)outputs[0])[compNdx]; local 1085 const int out = ((const deInt32*)outputs[0])[compNdx]; local [all...] |
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/ |
InstructionCodec.java | 40 @Override public void encode(DecodedInstruction insn, CodeOutput out) { 41 out.write(insn.getOpcodeUnit()); 55 @Override public void encode(DecodedInstruction insn, CodeOutput out) { 56 out.write(insn.getOpcodeUnit()); 72 @Override public void encode(DecodedInstruction insn, CodeOutput out) { 73 out.write( 91 @Override public void encode(DecodedInstruction insn, CodeOutput out) { 92 out.write( 109 @Override public void encode(DecodedInstruction insn, CodeOutput out) { 110 out.write(codeUnit(insn.getOpcode(), insn.getA())) [all...] |