/external/mesa3d/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/mesa3d/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/mesa3d/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/mesa3d/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/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/pdfium/core/src/fxcodec/codec/ |
fx_codec_jpx_opj.cpp | 376 unsigned char *inbuf, *outbuf, *in, *out;
local 380 out = outbuf = FX_Alloc(unsigned char, nr_samples);
394 *r++ = (int) * out++;
395 *g++ = (int) * out++;
396 *b++ = (int) * out++;
401 unsigned short *inbuf, *outbuf, *in, *out;
local 405 out = outbuf = FX_Alloc(unsigned short, nr_samples);
419 *r++ = (int) * out++;
420 *g++ = (int) * out++;
421 *b++ = (int) * out++; 427 unsigned char *in, *inbuf, *out, *outbuf; local 478 cmsHPROFILE in, out; local [all...] |
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/ |
cmsio0.c | 21 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 954 cmsUInt32Number out; local 962 for (i=len-1, out=0; i >= 0; --i) { 963 out = out * BaseOut + Buff[i]; 966 return out; [all...] |
/external/proguard/src/proguard/classfile/editor/ |
CodeAttributeComposer.java | 202 // Fill out the new offset of the appended instruction. 238 // Fill out the new offset of the following instruction. 311 System.out.println(" -> ["+exceptionInfo.u2startPC+" -> "+exceptionInfo.u2endPC+": "+exceptionInfo.u2handlerPC+"]"); 415 System.out.println("CodeAttributeComposer: putting results in ["+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz)+"]"); 736 throw new IllegalArgumentException("Instruction offset ["+oldInstructionOffset +"] out of range in code fragment with length ["+codeFragmentLengths[level]+"] at level "+level); [all...] |
/external/regex-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/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/srec/seti/sltsEngine/src/ |
run_seq_lts.c | 411 char * out; local 431 out = outputs[i] = lts_alloc(olen + 1, sizeof(char)); 432 if (out == NULL) { 438 PORT_FREAD_CHAR(out, sizeof(char), olen, fp); 440 out[olen] = '\0'; 453 if (ilen > 0) pfprintf(PSTDOUT,"LOAD_TREE: got input %s out %s\n", in, outputs[i]); 454 pfprintf(PSTDOUT,"LOAD_TREE: outputs[%d] len %d out %x out %s\n", i, olen, outputs[i], outputs[i]); 1105 /*figure out syllable in word - not really syllables - just looks to see if is or at first or last vowel*/ 1397 char *out; local [all...] |
/external/webp/src/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/webp/src/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);
|
/frameworks/av/cmds/stagefright/ |
stagefright.cpp | 132 FILE *out = fopen(filename.string(), "wb"); local 151 out), 160 fclose(out); 161 out = NULL; 853 CHECK_EQ(writeJpegFile("/sdcard/out.jpg", [all...] |
/frameworks/av/media/libeffects/lvm/wrapper/Bundle/ |
EffectBundle.cpp | 50 "out of range returned by %s in %s\n", callingFunc, calledFunc);\ 2812 LVM_INT16 *out = (LVM_INT16 *)outBuffer->raw; local [all...] |
/frameworks/av/media/libmediaplayerservice/nuplayer/ |
NuPlayerDecoder.cpp | 798 AString out; local 846 if (out.size() > 0) { 847 out.append(", "); 850 out.append(tmp); 855 ALOGI("%s", out.c_str()); 984 AString out; local [all...] |
/frameworks/av/media/libstagefright/ |
AVIExtractor.cpp | 185 MediaBuffer *out; local 186 CHECK_EQ(mBufferGroup->acquire_buffer(&out), (status_t)OK); 188 ssize_t n = mExtractor->mDataSource->readAt(offset, out->data(), size); 194 out->set_range(0, size); 196 out->meta_data()->setInt64(kKeyTime, timeUs); 199 out->meta_data()->setInt32(kKeyIsSyncFrame, 1); 203 *buffer = out; 207 mSplitter->append(out); 208 out->release(); 209 out = NULL [all...] |
OggExtractor.cpp | 171 MediaBuffer **out, const ReadOptions *options) { 172 *out = NULL; 200 *out = packet; 454 status_t MyVorbisExtractor::readNextPacket(MediaBuffer **out) { 455 *out = NULL; 534 *out = buffer; 580 *out = buffer; 667 // if necessary thin out the table evenly to trim it down to maximum 857 uint8_t *out = (uint8_t *)buffer; local 886 out[j++] = (accum >> 16) [all...] |
/frameworks/av/media/libstagefright/codecs/avc/enc/src/ |
motion_comp.cpp | 191 uint8 *out, int blkwidth, int blkheight) 216 prev_pix = (pix4 << 24) & 0xFF000000; /* mask out byte belong to previous word */ 218 *((uint32*)out) = result; /* write 4 bytes */ 219 out += 4; 223 out += out_offset; 236 prev_pix = (pix4 << 16) & 0xFFFF0000; /* mask out byte belong to previous word */ 238 *((uint32*)out) = result; /* write 4 bytes */ 239 out += 4; 243 out += out_offset; 255 prev_pix = (pix4 << 8) & 0xFFFFFF00; /* mask out byte belong to previous word * 1838 uint8 *ref, *out; local 1931 uint8 *ref, *out; local 1981 uint8 *ref, *out; local 2024 int32 *out; local [all...] |
motion_est.cpp | 190 uint8 *out; local 197 out = cur - pitch; 200 temp = out[j] - cur[j]; 205 out = cur - 1; 206 out -= pitch; 210 temp = *(out += pitch) - *(cur += pitch); 236 /* if turns out to be IDR frame, set video->nal_unit_type to AVC_NALTYPE_IDR */ [all...] |
/frameworks/av/services/audioflinger/ |
AudioMixer.cpp | 516 ALOGE("AudioMixer::getTrackName out of available tracks"); 1585 int32_t *out = t1.mainBuffer; local 1681 int32_t *out = t1.mainBuffer; local 1741 int32_t* out = t.mainBuffer; local 1979 TO* out = reinterpret_cast<TO*>(t->mainBuffer); local [all...] |
Effects.cpp | 302 int16_t *out = mConfig.outputCfg.buffer.s16; local 304 out[i] = clamp16((int32_t)out[i] + (int32_t)in[i]); [all...] |
/frameworks/base/core/java/android/provider/ |
DocumentsContract.java | 918 final Bundle out = client.call(METHOD_CREATE_DOCUMENT, null, in); local 956 final Bundle out = client.call(METHOD_RENAME_DOCUMENT, null, in); local [all...] |