/external/adhd/cras/src/dsp/ |
D | crossover2.c | 2 * Use of this source code is governed by a BSD-style license that can be 15 lr42->b0 = q.b0; in lr42_set() 16 lr42->b1 = q.b1; in lr42_set() 17 lr42->b2 = q.b2; in lr42_set() 18 lr42->a1 = q.a1; in lr42_set() 19 lr42->a2 = q.a2; in lr42_set() 25 * data0 --+-- lp --> data0 27 * \-- hp --> data1 31 static void lr42_split(struct lr42 *lp, struct lr42 *hp, int count, in lr42_split() argument 35 float32x4_t x1 = {lp->x1L, hp->x1L, lp->x1R, hp->x1R}; in lr42_split() [all …]
|
D | crossover.c | 2 * Use of this source code is governed by a BSD-style license that can be 13 lr4->b0 = q.b0; in lr4_set() 14 lr4->b1 = q.b1; in lr4_set() 15 lr4->b2 = q.b2; in lr4_set() 16 lr4->a1 = q.a1; in lr4_set() 17 lr4->a2 = q.a2; in lr4_set() 18 lr4->x1 = 0; in lr4_set() 19 lr4->x2 = 0; in lr4_set() 20 lr4->y1 = 0; in lr4_set() 21 lr4->y2 = 0; in lr4_set() [all …]
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_surface.c | 20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. 67 struct llvmpipe_context *lp = llvmpipe_context(pipe); in lp_blit() local 70 if (blit_info->render_condition_enable && !llvmpipe_check_render_cond(lp)) in lp_blit() 73 if (info.src.resource->nr_samples > 1 && in lp_blit() 74 info.dst.resource->nr_samples <= 1 && in lp_blit() 75 !util_format_is_depth_or_stencil(info.src.resource->format) && in lp_blit() 76 !util_format_is_pure_integer(info.src.resource->format)) { in lp_blit() 85 if (!util_blitter_is_blit_supported(lp->blitter, &info)) { in lp_blit() 86 debug_printf("llvmpipe: blit unsupported %s -> %s\n", in lp_blit() 87 util_format_short_name(info.src.resource->format), in lp_blit() [all …]
|
D | lp_draw_arrays.c | 20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. 56 struct llvmpipe_context *lp = llvmpipe_context(pipe); in llvmpipe_draw_vbo() local 57 struct draw_context *draw = lp->draw; in llvmpipe_draw_vbo() 61 if (!llvmpipe_check_render_cond(lp)) in llvmpipe_draw_vbo() 64 if (info->indirect) { in llvmpipe_draw_vbo() 69 if (lp->dirty) in llvmpipe_draw_vbo() 70 llvmpipe_update_derived( lp ); in llvmpipe_draw_vbo() 75 for (i = 0; i < lp->num_vertex_buffers; i++) { in llvmpipe_draw_vbo() 76 const void *buf = lp->vertex_buffer[i].is_user_buffer ? in llvmpipe_draw_vbo() 77 lp->vertex_buffer[i].buffer.user : NULL; in llvmpipe_draw_vbo() [all …]
|
D | lp_state_surface.c | 20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. 52 struct llvmpipe_context *lp = llvmpipe_context(pipe); in llvmpipe_set_framebuffer_state() local 54 boolean changed = !util_framebuffer_state_equal(&lp->framebuffer, fb); in llvmpipe_set_framebuffer_state() 57 assert(fb->width <= LP_MAX_WIDTH); in llvmpipe_set_framebuffer_state() 58 assert(fb->height <= LP_MAX_HEIGHT); in llvmpipe_set_framebuffer_state() 65 enum pipe_format depth_format = fb->zsbuf ? in llvmpipe_set_framebuffer_state() 66 fb->zsbuf->format : PIPE_FORMAT_NONE; in llvmpipe_set_framebuffer_state() 70 if (lp->framebuffer.zsbuf && lp->framebuffer.zsbuf->context != pipe) { in llvmpipe_set_framebuffer_state() 74 for (i = 0; i < fb->nr_cbufs; i++) { in llvmpipe_set_framebuffer_state() 75 if (lp->framebuffer.cbufs[i] && in llvmpipe_set_framebuffer_state() [all …]
|
D | lp_state_setup.c | 20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. 95 LLVMBuilderRef builder = gallivm->builder; in store_coef() 100 LLVMBuildGEP(builder, args->a0, &idx, 1, "")); in store_coef() 104 LLVMBuildGEP(builder, args->dadx, &idx, 1, "")); in store_coef() 108 LLVMBuildGEP(builder, args->dady, &idx, 1, "")); in store_coef() 119 store_coef(gallivm, args, slot, vert, args->bld.zero, args->bld.zero); in emit_constant_coef4() 125 * Setup the fragment input attribute with the front-facing value. 133 LLVMBuilderRef builder = gallivm->builder; in emit_facing_coef() 134 LLVMTypeRef float_type = LLVMFloatTypeInContext(gallivm->context); in emit_facing_coef() 135 LLVMValueRef a0_0 = args->facing; in emit_facing_coef() [all …]
|
/external/mksh/src/ |
D | lalloc.c | 1 /*- 7 * is granted to deal in this work without restriction, including un- 28 /* build with CPPFLAGS+= -DUSE_REALLOC_MALLOC=0 on ancient systems */ 48 struct lalloc_item *lp = ptr; in free_osimalloc() local 50 if (munmap(lp, lp->len)) in free_osimalloc() 57 struct lalloc_item *lp, *lold = ptr; in remalloc() local 61 if (lold && lold->len >= size) in remalloc() 64 if ((lp = mmap(NULL, size, PROT_READ | PROT_WRITE, in remalloc() 65 MAP_ANON | MAP_PRIVATE, -1, (off_t)0)) == MAP_FAILED) in remalloc() 67 if (ALLOC_ISUNALIGNED(lp)) in remalloc() [all …]
|
/external/u-boot/fs/ubifs/ |
D | lprops.c | 1 // SPDX-License-Identifier: GPL-2.0+ 5 * Copyright (C) 2006-2008 Nokia Corporation. 25 * get_heap_comp_val - get the LEB properties value for heap comparisons. 33 return lprops->free; in get_heap_comp_val() 35 return lprops->free + lprops->dirty; in get_heap_comp_val() 37 return lprops->dirty; in get_heap_comp_val() 42 * move_up_lpt_heap - move a new heap entry up as far as possible. 43 * @c: UBIFS file-system description object 58 hpos = lprops->hpos; in move_up_lpt_heap() 64 int ppos = (hpos - 1) / 2; in move_up_lpt_heap() [all …]
|
D | gc.c | 1 // SPDX-License-Identifier: GPL-2.0 5 * Copyright (C) 2006-2008 Nokia Corporation. 14 * nodes) or not. For non-index LEBs, garbage collection finds a LEB which 15 * contains a lot of dirty space (obsolete nodes), and copies the non-obsolete 16 * nodes to the journal, at which point the garbage-collected LEB is free to be 17 * reused. For index LEBs, garbage collection marks the non-obsolete index nodes 18 * dirty in the TNC, and after the next commit, the garbage-collected LEB is 24 * LEBs which have less than @c->dead_wm bytes of free + dirty space are full 25 * and not worth garbage-collecting. The dead watermark is one min. I/O unit 60 * switch_gc_head - switch the garbage collection journal head. [all …]
|
/external/llvm/test/Transforms/Inline/ |
D | invoke-combine-clauses.ll | 1 ; RUN: opt %s -inline -S | FileCheck %s 21 %lp = landingpad i32 37 %lp = landingpad i32 39 resume i32 %lp 42 ; CHECK: %lp.i = landingpad 43 ; CHECK-NEXT: catch i8* @exception_inner 44 ; CHECK-NEXT: catch i8* @exception_outer 46 ; CHECK-NEXT: load 60 %lp = landingpad i32 62 resume i32 %lp [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/Inline/ |
D | invoke-combine-clauses.ll | 1 ; RUN: opt %s -passes='cgscc(inline)' -S | FileCheck %s 21 %lp = landingpad i32 37 %lp = landingpad i32 39 resume i32 %lp 42 ; CHECK: %lp.i = landingpad 43 ; CHECK-NEXT: catch i8* @exception_inner 44 ; CHECK-NEXT: catch i8* @exception_outer 46 ; CHECK-NEXT: load 60 %lp = landingpad i32 62 resume i32 %lp [all …]
|
/external/autotest/client/site_tests/platform_PrinterPpds/digests/ |
D | blacklist.txt | 1 Brother-DCP-1200-hl1250.ppd.gz 2 Brother-DCP-7010-ljet4.ppd.gz 3 Brother-DCP-7020-ljet4.ppd.gz 4 Brother-HL-1030-hl1250.ppd.gz 5 Brother-HL-1040-ljet2p.ppd.gz 6 Brother-HL-1050-ljet4.ppd.gz 7 Brother-HL-1060-ljet4.ppd.gz 8 Brother-HL-10V-ljet3.ppd.gz 9 Brother-HL-10h-ljet4.ppd.gz 10 Brother-HL-1230-hl1250.ppd.gz [all …]
|
/external/python/cpython2/Lib/plat-irix6/ |
D | flp.doc | 3 .LP 4 The flp module loads fl-forms from fd files, as generated 7 .LP 11 There are fairly low-level create functions that create single objects, 14 .LP 19 .LP 22 .LP 40 .LP 50 .LP 55 "Type", the sub-class (eg. FL.NORMALBUTTON); [all …]
|
/external/python/cpython2/Lib/plat-irix5/ |
D | flp.doc | 3 .LP 4 The flp module loads fl-forms from fd files, as generated 7 .LP 11 There are fairly low-level create functions that create single objects, 14 .LP 19 .LP 22 .LP 40 .LP 50 .LP 55 "Type", the sub-class (eg. FL.NORMALBUTTON); [all …]
|
/external/u-boot/drivers/net/ |
D | pcnet.c | 1 // SPDX-License-Identifier: GPL-2.0+ 6 * Linux driver pcnet32.c written 1996-1999 by Thomas Bogendoerfer. 60 /* The PCNET 32-Bit initialization block, described in databook. */ 87 static pcnet_priv_t *lp; variable 97 outw(index, dev->iobase + PCNET_RAP); in pcnet_read_csr() 98 return inw(dev->iobase + PCNET_RDP); in pcnet_read_csr() 103 outw(index, dev->iobase + PCNET_RAP); in pcnet_write_csr() 104 outw(val, dev->iobase + PCNET_RDP); in pcnet_write_csr() 109 outw(index, dev->iobase + PCNET_RAP); in pcnet_read_bcr() 110 return inw(dev->iobase + PCNET_BDP); in pcnet_read_bcr() [all …]
|
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/ |
D | simple_interpolate_lsf.c | 4 * Use of this source code is governed by a BSD-style license 13 iLBC Speech Coder ANSI-C Source Code 24 /*----------------------------------------------------------------* 26 *---------------------------------------------------------------*/ 50 int16_t lp[LPC_FILTERORDER + 1]; in WebRtcIlbcfix_SimpleInterpolateLsf() local 56 if (iLBCenc_inst->mode==30) { in WebRtcIlbcfix_SimpleInterpolateLsf() 61 WebRtcIlbcfix_LsfInterpolate2PloyEnc(lp, lsfdeqold, lsfdeq, in WebRtcIlbcfix_SimpleInterpolateLsf() 64 WEBRTC_SPL_MEMCPY_W16(syntdenum, lp, lp_length); in WebRtcIlbcfix_SimpleInterpolateLsf() 67 WebRtcIlbcfix_LsfInterpolate2PloyEnc(lp, lsfold, lsf, in WebRtcIlbcfix_SimpleInterpolateLsf() 70 WebRtcIlbcfix_BwExpand(weightdenum, lp, in WebRtcIlbcfix_SimpleInterpolateLsf() [all …]
|
D | decoder_interpolate_lsf.c | 4 * Use of this source code is governed by a BSD-style license 13 iLBC Speech Coder ANSI-C Source Code 24 /*----------------------------------------------------------------* 26 *---------------------------------------------------------------*/ 39 int16_t lp[LPC_FILTERORDER + 1], *lsfdeq2; in WebRtcIlbcfix_DecoderInterpolateLsp() local 44 if (iLBCdec_inst->mode==30) { in WebRtcIlbcfix_DecoderInterpolateLsp() 47 WebRtcIlbcfix_LspInterpolate2PolyDec(lp, (*iLBCdec_inst).lsfdeqold, lsfdeq, in WebRtcIlbcfix_DecoderInterpolateLsp() 49 WEBRTC_SPL_MEMCPY_W16(syntdenum,lp,lp_length); in WebRtcIlbcfix_DecoderInterpolateLsp() 50 …WebRtcIlbcfix_BwExpand(weightdenum, lp, (int16_t*)WebRtcIlbcfix_kLpcChirpSyntDenum, (int16_t)lp_le… in WebRtcIlbcfix_DecoderInterpolateLsp() 56 WebRtcIlbcfix_LspInterpolate2PolyDec(lp, lsfdeq, lsfdeq2, in WebRtcIlbcfix_DecoderInterpolateLsp() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/BDCE/ |
D | order.ll | 1 ; RUN: opt -bdce -S < %s | FileCheck %s 2 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" 3 target triple = "x86_64-unknown-linux-gnu" 18 ; CHECK-LABEL: @_ZN11__sanitizerL12TestRegistryEPNS_14ThreadRegistryEb 21 lpad65.loopexit.split-lp.loopexit.split-lp: 24 lpad65.loopexit.split-lp.loopexit.split-lp.loopexit: 27 br label %lpad65.loopexit.split-lp.loopexit.split-lp 31 to label %invoke.cont70 unwind label %lpad65.loopexit.split-lp.loopexit.split-lp.loopexit
|
/external/llvm/test/Transforms/BDCE/ |
D | order.ll | 1 ; RUN: opt -bdce -S < %s | FileCheck %s 2 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" 3 target triple = "x86_64-unknown-linux-gnu" 18 ; CHECK-LABEL: @_ZN11__sanitizerL12TestRegistryEPNS_14ThreadRegistryEb 21 lpad65.loopexit.split-lp.loopexit.split-lp: 24 lpad65.loopexit.split-lp.loopexit.split-lp.loopexit: 27 br label %lpad65.loopexit.split-lp.loopexit.split-lp 31 to label %invoke.cont70 unwind label %lpad65.loopexit.split-lp.loopexit.split-lp.loopexit
|
/external/lzma/C/ |
D | LzmaLib.h | 1 /* LzmaLib.h -- LZMA library interface 2 2013-01-18 : Igor Pavlov : Public domain */ 19 state_size = (4 + (1.5 << (lc + lp))) KB 20 by default (lc=3, lp=0), state_size = 16 KB. 24 0 1 lc, lp and pb in encoded form. 30 ------------ 32 outPropsSize - 37 -1 for any from: level, loc, lp, pb, fb, numThreads 40 level - compression level: 0 <= level <= 9; 57 dictSize - The dictionary size in bytes. The maximum value is [all …]
|
/external/llvm/test/Transforms/SLPVectorizer/X86/ |
D | operandorder.ll | 1 ; RUN: opt < %s -basicaa -slp-vectorizer -slp-threshold=-100 -instcombine -dce -S -mtriple=i386-app… 3 …alayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-… 10 ; CHECK-LABEL: shuffle_operands1 27 ; CHECK-LABEL: shuffle_preserve_broadcast 28 ; CHECK: %[[BCAST:[a-z0-9]+]] = insertelement <2 x double> undef, double %v0_1 34 br label %lp 36 lp: 37 %p = phi double [ 1.000000e+00, %lp ], [ 0.000000e+00, %entry ] 46 br i1 undef, label %lp, label %ext 52 ; CHECK-LABEL: shuffle_preserve_broadcast2 [all …]
|
/external/flac/libFLAC/include/private/ |
D | lpc.h | 1 /* libFLAC - Free Lossless Audio Codec library 2 * Copyright (C) 2000-2009 Josh Coalson 3 * Copyright (C) 2011-2016 Xiph.Org Foundation 9 * - Redistributions of source code must retain the above copyright 12 * - Redistributions in binary form must reproduce the above copyright 16 * - Neither the name of the Xiph.org Foundation nor the names of its 48 * -------------------------------------------------------------------- 52 * IN in[0,data_len-1] 53 * IN window[0,data_len-1] 54 * OUT out[0,lag-1] [all …]
|
/external/eigen/test/ |
D | permutationmatrices.cpp | 34 LeftPermutationType lp(lv); in permutationmatrices() local 40 …VERIFY_EVALUATION_COUNT(m_permuted = lp * m_original * rp, 1); // 1 temp for sub expression "lp * … in permutationmatrices() 46 Matrix<Scalar,Rows,Rows> lm(lp); in permutationmatrices() 52 VERIFY_EVALUATION_COUNT(m_permuted = lp * m_permuted * rp, 1); in permutationmatrices() 55 VERIFY_IS_APPROX(lp.inverse()*m_permuted*rp.inverse(), m_original); in permutationmatrices() 59 VERIFY((lp*lp.inverse()).toDenseMatrix().isIdentity()); in permutationmatrices() 67 VERIFY_IS_APPROX((lp*lp2).toDenseMatrix().template cast<Scalar>(), lm*lm2); in permutationmatrices() 77 …VERIFY_EVALUATION_COUNT(m_permuted.noalias()= lp.inverse() * m_permuted, 1); // 1 temp to allocate… in permutationmatrices() 78 VERIFY_IS_APPROX(m_permuted, lp.inverse()*m_original); in permutationmatrices() 85 VERIFY_EVALUATION_COUNT(m_permuted.noalias() = lp * m_permuted, 1); // 1 temp to allocate the mask in permutationmatrices() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/SLPVectorizer/X86/ |
D | operandorder.ll | 1 ; RUN: opt < %s -basicaa -slp-vectorizer -slp-threshold=-100 -instcombine -dce -S -mtriple=i386-app… 3 …alayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-… 10 ; CHECK-LABEL: shuffle_operands1 27 ; CHECK-LABEL: shuffle_preserve_broadcast 28 ; CHECK: %[[BCAST:[a-z0-9]+]] = insertelement <2 x double> undef, double %v0_1 34 br label %lp 36 lp: 37 %p = phi double [ 1.000000e+00, %lp ], [ 0.000000e+00, %entry ] 46 br i1 undef, label %lp, label %ext 52 ; CHECK-LABEL: shuffle_preserve_broadcast2 [all …]
|
/external/xz-java/src/org/tukaani/xz/ |
D | LZMAInputStream.java | 5 * Igor Pavlov <http://7-zip.org/> 32 * to be worse (maybe 10-20 % slower) than with {@link LZMA2InputStream} 33 * or {@link XZInputStream} (when the .xz file contains LZMA2-compressed data). 43 * limitation is due to Java using signed 32-bit integers for array 60 * Number of uncompressed bytes left to be decompressed, or -1 if 69 * the given dictionary size and LZMA properties byte (lc, lp, and pb). 76 * of lc, lp, and pb 99 int lp = props / 9; in getMemoryUsage() local 100 int lc = props - lp * 9; in getMemoryUsage() 102 return getMemoryUsage(dictSize, lc, lp); in getMemoryUsage() [all …]
|