HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 2251 - 2275 of 4560) sorted by null

<<919293949596979899100>>

  /external/libunwind_llvm/src/
UnwindCursor.hpp 669 _Self operator+(size_t a) { _Self out = *this; out._i += a; return out; } local
670 _Self operator-(size_t a) { assert(_i >= a); _Self out = *this; out._i -= a; return out; } local
    [all...]
  /external/libvorbis/lib/
floor1.c 102 /* save out partitions */
109 /* save out partition classes */
118 /* save out the post list */
721 back out to 'unused' when encoding them so long as curve
776 int out[VIF_POSIT+2]; local
801 out[0]=post[0];
802 out[1]=post[1];
818 out[i]=0;
842 out[i]=val;
848 /* we have everything we need. pack it out */
    [all...]
  /external/libvpx/libvpx/vp8/common/mips/msa/
sixtap_filter_msa.c 147 v16u8 mask0, mask1, mask2, out; local
165 out = PCKEV_XORI128_UB(out0, out1);
166 ST4x4_UB(out, out, 0, 1, 2, 3, dst, dst_stride);
174 v16u8 mask0, mask1, mask2, out; local
197 out = PCKEV_XORI128_UB(out0, out1);
198 ST4x4_UB(out, out, 0, 1, 2, 3, dst, dst_stride);
200 out = PCKEV_XORI128_UB(out2, out3);
201 ST4x4_UB(out, out, 0, 1, 2, 3, dst, dst_stride)
270 v16u8 mask0, mask1, mask2, out; local
320 v16u8 out; local
484 v16u8 mask0, mask1, mask2, out; local
657 v16u8 out; local
682 v16u8 out; local
768 v16u8 out; local
817 v16u8 out; local
968 v16u8 mask0, mask1, out; local
1265 v16u8 out; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/mips/msa/
vp9_fdct16x16_msa.c 86 int16_t *out) {
87 int16_t *out_ptr = out + 128;
108 ST_SH(out4, (out + 3 * 16));
115 ST_SH(out12, (out + 2 * 16));
125 ST_SH(out0, (out));
133 ST_SH(out8, (out + 16));
140 ST_SH(out2, (out + 7 * 16));
144 ST_SH(out6, (out + 4 * 16));
148 ST_SH(out10, (out + 6 * 16));
152 ST_SH(out14, (out + 5 * 16))
366 int16_t *out = output; local
    [all...]
  /external/libvpx/libvpx/vpx_dsp/mips/
idct16x16_msa.c 208 int16_t *out = out_arr; local
213 vpx_idct16_1d_rows_msa((input + (i << 7)), (out + (i << 7)));
219 vpx_idct16_1d_columns_addblk_msa((out + (i << 3)), (dst + (i << 3)),
228 int16_t *out = out_arr; local
231 vpx_idct16_1d_rows_msa(input, out);
234 out += 4 * 16;
237 "sw $zero, 0(%[out]) \n\t"
238 "sw $zero, 4(%[out]) \n\t"
239 "sw $zero, 8(%[out]) \n\t"
240 "sw $zero, 12(%[out]) \n\t
266 int16_t out; local
    [all...]
intrapred_msa.c 193 uint32_t out; local
196 out = __msa_copy_u_w((v4i32)store, 0);
198 SW4(out, out, out, out, dst, dst_stride);
252 uint64_t out; local
255 out = __msa_copy_u_d((v2i64)store, 0);
257 SD4(out, out, out, out, dst, dst_stride)
265 v16u8 top, left, out; local
288 v16u8 data, out; local
308 const v16u8 out = (v16u8)__msa_ldi_b(128); local
319 v16u8 top0, top1, left0, left1, out; local
348 v16u8 data0, data1, out; local
373 const v16u8 out = (v16u8)__msa_ldi_b(128); local
    [all...]
itrans32_dspr2.c 952 int r, out; local
    [all...]
sub_pixel_variance_msa.c 448 v16u8 filt0, out, ref0, ref1, ref2, ref3; local
472 out = (v16u8)__msa_ilvev_d((v2i64)src1, (v2i64)src0);
473 CALC_MSE_AVG_B(out, ref0, var, avg);
474 out = (v16u8)__msa_ilvev_d((v2i64)src3, (v2i64)src2);
475 CALC_MSE_AVG_B(out, ref1, var, avg);
589 v16u8 src0, src1, src2, src3, src4, out; local
616 out = (v16u8)__msa_pckev_b((v16i8)tmp1, (v16i8)tmp0);
617 CALC_MSE_AVG_B(out, ref, var, avg);
793 v16u8 out, ref = { 0 }; local
823 out = (v16u8)__msa_pckev_b((v16i8)tmp1, (v16i8)tmp0)
1031 v16u8 out, pred, filt0, ref = { 0 }; local
1079 v16u8 out, pred, filt0; local
1258 v16u8 out, pred, ref = { 0 }; local
1493 v16u8 out, pred, ref = { 0 }; local
    [all...]
  /external/libvpx/libvpx/vpx_dsp/x86/
highbd_loopfilter_sse2.c 959 uint16_t *out = dst[idx8x8]; local
    [all...]
  /external/libweave/third_party/chromium/base/
values.cc 339 DictionaryValue* out; local
340 if (value && value->GetAsDictionary(&out)) {
342 return make_scoped_ptr(out);
536 std::string out; local
537 if (!GetString(path, &out))
540 if (!IsStringASCII(out)) {
545 out_value->assign(out);
841 ListValue* out; local
842 if (value && value->GetAsList(&out)) {
844 return make_scoped_ptr(out);
    [all...]
  /external/libxml2/
c14n.c 427 * we do not want to print it out
460 * we do not want to print it out
567 * Prints out canonical namespace axis of the current node to the
664 * print out all elements from list
681 * Prints out exclusive canonical namespace axis of the current node to the
841 * print out all elements from list
926 * Prints out canonical attribute urrent node to the
1099 * Prints out canonical attribute axis of the current node to the
2152 xmlChar *out = NULL; local
    [all...]
nanohttp.c 139 char *out; /* buffer sent (zero terminated) */ member in struct:xmlNanoHTTPCtxt
172 * Handle an out of memory condition
423 if (ctxt->out != NULL) xmlFree(ctxt->out);
977 /* Time out */
978 __xmlIOErr(XML_FROM_HTTP, 0, "Connect attempt timed out");
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 96 formatted_raw_ostream &Out;
111 : ModulePass(ID), OutOwner(std::move(o)), Out(*OutOwner), uniqueNum(0),
130 formatted_raw_ostream& nl(formatted_raw_ostream &Out, int delta = 0);
132 inline void out() { if (indent_level >0) indent_level--; } function in class:__anon17651::CppWriter
170 formatted_raw_ostream &CppWriter::nl(formatted_raw_ostream &Out, int delta) {
171 Out << '\n';
174 Out.indent(indent_level);
175 return Out;
225 Out << "ConstantFP::get(mod->getContext(), ";
226 Out << "APFloat("
    [all...]
  /external/llvm/test/MC/X86/
x86-64.s 263 out %al, (%dx) label
265 out %ax, (%dx) label
267 out %eax, (%dx) label
  /external/lz4/programs/
fullbench.c 257 static int local_LZ4_compress_limitedOutput(const char* in, char* out, int inSize)
259 return LZ4_compress_limitedOutput(in, out, inSize, LZ4_compressBound(inSize));
263 static int local_LZ4_compress_withState(const char* in, char* out, int inSize)
265 return LZ4_compress_withState(stateLZ4, in, out, inSize);
268 static int local_LZ4_compress_limitedOutput_withState(const char* in, char* out, int inSize)
270 return LZ4_compress_limitedOutput_withState(stateLZ4, in, out, inSize, LZ4_compressBound(inSize));
274 static int local_LZ4_compress_continue(const char* in, char* out, int inSize)
276 return LZ4_compress_continue(ctx, in, out, inSize);
279 static int local_LZ4_compress_limitedOutput_continue(const char* in, char* out, int inSize)
281 return LZ4_compress_limitedOutput_continue(ctx, in, out, inSize, LZ4_compressBound(inSize))
515 char* out = compressed_buff; local
603 char* out = compressed_buff; local
    [all...]
  /external/mesa3d/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/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/opencv3/3rdparty/libjasper/
jpc_enc.h 43 * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
619 jas_stream_t *out; member in struct:jpc_enc_s
  /external/opencv3/3rdparty/libpng/
png.c 674 * used with your application, print out PNG_LIBPNG_VER_STRING, which
2642 png_uint_16 out = (png_uint_16)(i * 257U); \/* 16-bit output value *\/ local
    [all...]
  /external/opencv3/3rdparty/libwebp/dsp/
enc.c 51 int16_t out[16]; local
53 VP8FTransform(ref + VP8DspScan[j], pred + VP8DspScan[j], out);
57 const int v = abs(out[k]) >> 3; // TODO(skal): add rounding?
135 static void FTransform(const uint8_t* src, const uint8_t* ref, int16_t* out) {
157 out[0 + i] = (a0 + a1 + 7) >> 4; // 12b
158 out[4 + i] = ((a2 * 2217 + a3 * 5352 + 12000) >> 16) + (a3 != 0);
159 out[8 + i] = (a0 - a1 + 7) >> 4;
160 out[12+ i] = ((a3 * 2217 - a2 * 5352 + 51000) >> 16);
164 static void ITransformWHT(const int16_t* in, int16_t* out) {
183 out[ 0] = (a0 + a1) >> 3
    [all...]
  /external/opencv3/3rdparty/libwebp/enc/
frame.c 645 const uint8_t* const out = it->yuv_out_; local
647 enc->sse_[0] += VP8SSE16x16(in + Y_OFF, out + Y_OFF);
648 enc->sse_[1] += VP8SSE8x8(in + U_OFF, out + U_OFF);
649 enc->sse_[2] += VP8SSE8x8(in + V_OFF, out + V_OFF);
  /external/opencv3/modules/ts/include/opencv2/ts/
ts_perf.hpp 301 std::vector<cv::String> out; local
306 out.push_back(funName[i]);
308 return out;
447 _declareHelper& out(cv::InputOutputArray a1, WarmUpType wtype = WARMUP_WRITE);
448 _declareHelper& out(cv::InputOutputArray a1, cv::InputOutputArray a2, WarmUpType wtype = WARMUP_WRITE);
449 _declareHelper& out(cv::InputOutputArray a1, cv::InputOutputArray a2, cv::InputOutputArray a3, WarmUpType wtype = WARMUP_WRITE);
450 _declareHelper& out(cv::InputOutputArray a1, cv::InputOutputArray a2, cv::InputOutputArray a3, cv::InputOutputArray a4, WarmUpType wtype = WARMUP_WRITE);
584 // declare.in(a, b).out(c).time(0.5);

Completed in 1634 milliseconds

<<919293949596979899100>>