| /external/mesa3d/src/gallium/drivers/llvmpipe/ |
| D | lp_draw_arrays.c | 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() 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() 80 if (!lp->vertex_buffer[i].buffer.resource) { in llvmpipe_draw_vbo() 83 buf = llvmpipe_resource_data(lp->vertex_buffer[i].buffer.resource); in llvmpipe_draw_vbo() [all …]
|
| D | lp_surface.c | 119 struct llvmpipe_context *lp = llvmpipe_context(pipe); in lp_blit() local 122 if (blit_info->render_condition_enable && !llvmpipe_check_render_cond(lp)) in lp_blit() 129 if (!util_blitter_is_blit_supported(lp->blitter, &info)) { in lp_blit() 147 util_blitter_save_vertex_buffer_slot(lp->blitter, lp->vertex_buffer); in lp_blit() 148 util_blitter_save_vertex_elements(lp->blitter, (void*)lp->velems); in lp_blit() 149 util_blitter_save_vertex_shader(lp->blitter, (void*)lp->vs); in lp_blit() 150 util_blitter_save_geometry_shader(lp->blitter, (void*)lp->gs); in lp_blit() 151 util_blitter_save_so_targets(lp->blitter, lp->num_so_targets, in lp_blit() 152 (struct pipe_stream_output_target**)lp->so_targets); in lp_blit() 153 util_blitter_save_rasterizer(lp->blitter, (void*)lp->rasterizer); in lp_blit() [all …]
|
| D | lp_state_surface.c | 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() 70 if (lp->framebuffer.zsbuf && lp->framebuffer.zsbuf->context != pipe) { in llvmpipe_set_framebuffer_state() 75 if (lp->framebuffer.cbufs[i] && in llvmpipe_set_framebuffer_state() 76 lp->framebuffer.cbufs[i]->context != pipe) { in llvmpipe_set_framebuffer_state() 82 util_copy_framebuffer_state(&lp->framebuffer, fb); in llvmpipe_set_framebuffer_state() 85 pipe_surface_reference(&lp->framebuffer.zsbuf, NULL); in llvmpipe_set_framebuffer_state() 92 lp->floating_point_depth = in llvmpipe_set_framebuffer_state() 95 lp->mrd = util_get_depth_format_mrd(depth_desc); in llvmpipe_set_framebuffer_state() 98 draw_set_zs_format(lp->draw, depth_format); in llvmpipe_set_framebuffer_state() [all …]
|
| D | lp_state_setup.c | 708 struct llvmpipe_context *lp) in generate_setup_variant() argument 733 variant->gallivm = gallivm = gallivm_create(func_name, lp->context, NULL); in generate_setup_variant() 835 lp_make_setup_variant_key(struct llvmpipe_context *lp, in lp_make_setup_variant_key() argument 838 struct lp_fragment_shader *fs = lp->fs; in lp_make_setup_variant_key() 844 key->flatshade_first = lp->rasterizer->flatshade_first; in lp_make_setup_variant_key() 845 key->pixel_center_half = lp->rasterizer->half_pixel_center; in lp_make_setup_variant_key() 846 key->multisample = lp->rasterizer->multisample; in lp_make_setup_variant_key() 847 key->twoside = lp->rasterizer->light_twoside; in lp_make_setup_variant_key() 851 key->color_slot = lp->color_slot[0]; in lp_make_setup_variant_key() 852 key->bcolor_slot = lp->bcolor_slot[0]; in lp_make_setup_variant_key() [all …]
|
| /external/tensorflow/tensorflow/python/ops/ragged/ |
| D | string_ngrams_op_test.py | 85 data_tensor, ngram_width=3, separator=b"|", pad_values=(b"LP", b"RP")) 88 [b"LP|LP|a", b"LP|a|RP", b"a|RP|RP"], # 0 89 [b"LP|LP|b", b"LP|b|c", b"b|c|d", b"c|d|RP", b"d|RP|RP"], # 1 90 [b"LP|LP|e", b"LP|e|f", b"e|f|RP", b"f|RP|RP"] # 2 102 pad_values=(b"LP", b"RP"), 106 [b"LP|LP|a", b"LP|a|RP", b"a|RP|RP"], # 0 107 [b"LP|LP|b", b"LP|b|c", b"b|c|d", b"c|d|RP", b"d|RP|RP"], # 1 108 [b"LP|LP|e", b"LP|e|f", b"e|f|RP", b"f|RP|RP"] # 2 119 pad_values=(b"LP", b"RP"), 122 expected_ngrams = [[], [b"LP|b|c|d|RP"], []] [all …]
|
| /external/mksh/src/ |
| D | lalloc.c | 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 64 if ((lp = mmap(NULL, size, PROT_READ | PROT_WRITE, in remalloc() 67 if (ALLOC_ISUNALIGNED(lp)) in remalloc() 68 errx(1, "remalloc: unaligned(%p)", lp); in remalloc() 69 if (mprotect(((char *)lp) + 4096, 4096, PROT_NONE)) in remalloc() 71 lp->len = size; in remalloc() 74 memcpy(((char *)lp) + 8192, ((char *)lold) + 8192, in remalloc() 80 return (lp); in remalloc() [all …]
|
| /external/tensorflow/tensorflow/core/kernels/ |
| D | string_ngrams_op_test.cc | 73 MakeOp("|", {3}, "LP", "RP", -1, false); in TEST_F() 82 {"LP|LP|a", "LP|a|b", "a|b|c", "b|c|d", "c|d|RP", "d|RP|RP", // 0 in TEST_F() 83 "LP|LP|e", "LP|e|f", "e|f|RP", "f|RP|RP"}); // 1 in TEST_F() 91 MakeOp("|", {2, 3}, "LP", "RP", -1, false); in TEST_F() 100 {"LP|a", "a|b", "b|c", "c|d", "d|RP", "LP|LP|a", "LP|a|b", "a|b|c", in TEST_F() 102 "LP|e", "e|f", "f|RP", "LP|LP|e", "LP|e|f", "e|f|RP", "f|RP|RP"}); // 1 in TEST_F() 110 MakeOp("|", {2}, "LP", "RP", -1, false); in TEST_F() 119 {"LP|a", "a|b", "b|c", "c|d", "d|RP", // 0 in TEST_F() 120 "LP|e", "e|f", "f|RP"}); // 1 in TEST_F() 128 MakeOp("|", {2}, "LP", "RP", 4, false); in TEST_F() [all …]
|
| /external/libcups/test/ |
| D | 5.5-lp.sh | 3 # Test the lp command. 12 echo "LP Default Test" 14 echo " lp testfile.pdf" 15 $runcups $VALGRIND ../systemv/lp ../examples/testfile.pdf 2>&1 24 echo "LP Destination Test" 26 echo " lp -d Test3 -o fit-to-page testfile.jpg" 27 $runcups $VALGRIND ../systemv/lp -d Test3 -o fit-to-page ../examples/testfile.jpg 2>&1 36 echo "LP Options Test" 38 echo " lp -d Test1 -P 1-4 -o job-sheets=classified,classified testfile.pdf" 39 $runcups $VALGRIND ../systemv/lp -d Test1 -P 1-4 -o job-sheets=classified,classified ../examples/te… [all …]
|
| /external/python/cpython2/Lib/plat-irix6/ |
| D | flp.doc | 3 .LP 7 .LP 14 .LP 19 .LP 22 .LP 40 .LP 50 .LP 68 .LP 70 .LP 75 .LP [all …]
|
| /external/python/cpython2/Lib/plat-irix5/ |
| D | flp.doc | 3 .LP 7 .LP 14 .LP 19 .LP 22 .LP 40 .LP 50 .LP 68 .LP 70 .LP 75 .LP [all …]
|
| /external/llvm/test/Transforms/Inline/ |
| D | invoke-combine-clauses.ll | 21 %lp = landingpad i32 37 %lp = landingpad i32 39 resume i32 %lp 42 ; CHECK: %lp.i = landingpad 60 %lp = landingpad i32 62 resume i32 %lp 71 %lp = landingpad i32 73 resume i32 %lp 76 ; CHECK: %lp.i = landingpad 95 %lp = landingpad i32 [all …]
|
| /external/eigen/test/ |
| D | permutationmatrices.cpp | 35 LeftPermutationType lp(lv); in permutationmatrices() local 43 …VERIFY_EVALUATION_COUNT(m_permuted = lp * m_original * rp, 1); // 1 temp for sub expression "lp * … in permutationmatrices() 49 Matrix<Scalar,Rows,Rows> lm(lp); in permutationmatrices() 55 VERIFY_EVALUATION_COUNT(m_permuted = lp * m_permuted * rp, 1); in permutationmatrices() 59 lpi = lp.inverse(); in permutationmatrices() 60 VERIFY_IS_APPROX(lpi*m_permuted,lp.inverse()*m_permuted); in permutationmatrices() 62 VERIFY_IS_APPROX(lp.inverse()*m_permuted*rp.inverse(), m_original); in permutationmatrices() 66 VERIFY((lp*lp.inverse()).toDenseMatrix().isIdentity()); in permutationmatrices() 74 VERIFY_IS_APPROX((lp*lp2).toDenseMatrix().template cast<Scalar>(), lm*lm2); in permutationmatrices() 84 …VERIFY_EVALUATION_COUNT(m_permuted.noalias()= lp.inverse() * m_permuted, 1); // 1 temp to allocate… in permutationmatrices() [all …]
|
| /external/musl/src/stdlib/ |
| D | qsort.c | 92 static void sift(unsigned char *head, size_t width, cmpfun cmp, void *arg, int pshift, size_t lp[]) in sift() argument 101 lf = head - width - lp[pshift - 2]; in sift() 119 …char *head, size_t width, cmpfun cmp, void *arg, size_t pp[2], int pshift, int trusty, size_t lp[]) in trinkle() argument 133 stepson = head - lp[pshift]; in trinkle() 139 lf = head - width - lp[pshift - 2]; in trinkle() 154 sift(head, width, cmp, arg, pshift, lp); in trinkle() 160 size_t lp[12*sizeof(size_t)]; in __qsort_r() local 173 for(lp[0]=lp[1]=width, i=2; (lp[i]=lp[i-2]+lp[i-1]+width) < size; i++); in __qsort_r() 177 sift(head, width, cmp, arg, pshift, lp); in __qsort_r() 181 if(lp[pshift - 1] >= high - head) { in __qsort_r() [all …]
|
| /external/obstack/libiberty/ |
| D | obstack.c | 249 struct _obstack_chunk *lp; /* below addr of any objects in this chunk */ in _obstack_allocated_p() local 252 lp = (h)->chunk; in _obstack_allocated_p() 256 while (lp != 0 && ((void *) lp >= obj || (void *) (lp)->limit < obj)) in _obstack_allocated_p() 258 plp = lp->prev; in _obstack_allocated_p() 259 lp = plp; in _obstack_allocated_p() 261 return lp != 0; in _obstack_allocated_p() 270 struct _obstack_chunk *lp; /* below addr of any objects in this chunk */ in _obstack_free() local 273 lp = h->chunk; in _obstack_free() 277 while (lp != 0 && ((void *) lp >= obj || (void *) (lp)->limit < obj)) in _obstack_free() 279 plp = lp->prev; in _obstack_free() [all …]
|
| /external/libcups/doc/help/ |
| D | options.html | 12 HREF="man-lp.html">lp(1)</A>) and Berkeley (<A 29 lp filename 49 <P>Use the <CODE>-d</CODE> option with the <B>lp</B> command to 53 lp -d printer filename 74 <P>Both the <B>lp</B> and <B>lpr</B> commands support printing 78 program | lp 79 program | lp -d printer 94 <P>The <B>lp</B> and <B>lpr</B> commands allow you to pass 98 lp -o landscape -o fit-to-page -o media=A4 filename.jpg 139 <P>Both the <B>lp</B> and <B>lpr</B> commands have options for [all …]
|
| /external/webrtc/modules/audio_coding/codecs/ilbc/ |
| D | simple_interpolate_lsf.c | 52 int16_t lp[LPC_FILTERORDER + 1]; in WebRtcIlbcfix_SimpleInterpolateLsf() local 63 WebRtcIlbcfix_LsfInterpolate2PloyEnc(lp, lsfdeqold, lsfdeq, in WebRtcIlbcfix_SimpleInterpolateLsf() 66 WEBRTC_SPL_MEMCPY_W16(syntdenum, lp, lp_length); in WebRtcIlbcfix_SimpleInterpolateLsf() 69 WebRtcIlbcfix_LsfInterpolate2PloyEnc(lp, lsfold, lsf, in WebRtcIlbcfix_SimpleInterpolateLsf() 72 WebRtcIlbcfix_BwExpand(weightdenum, lp, in WebRtcIlbcfix_SimpleInterpolateLsf() 83 WebRtcIlbcfix_LsfInterpolate2PloyEnc(lp, lsfdeq, lsfdeq2, in WebRtcIlbcfix_SimpleInterpolateLsf() 86 WEBRTC_SPL_MEMCPY_W16(syntdenum + pos, lp, lp_length); in WebRtcIlbcfix_SimpleInterpolateLsf() 89 WebRtcIlbcfix_LsfInterpolate2PloyEnc(lp, lsf, lsf2, in WebRtcIlbcfix_SimpleInterpolateLsf() 92 WebRtcIlbcfix_BwExpand(weightdenum + pos, lp, in WebRtcIlbcfix_SimpleInterpolateLsf() 109 WebRtcIlbcfix_LsfInterpolate2PloyEnc(lp, lsfdeqold, lsfdeq, in WebRtcIlbcfix_SimpleInterpolateLsf() [all …]
|
| D | decoder_interpolate_lsf.c | 41 int16_t lp[LPC_FILTERORDER + 1], *lsfdeq2; in WebRtcIlbcfix_DecoderInterpolateLsp() local 49 WebRtcIlbcfix_LspInterpolate2PolyDec(lp, (*iLBCdec_inst).lsfdeqold, lsfdeq, in WebRtcIlbcfix_DecoderInterpolateLsp() 51 WEBRTC_SPL_MEMCPY_W16(syntdenum,lp,lp_length); in WebRtcIlbcfix_DecoderInterpolateLsp() 52 …WebRtcIlbcfix_BwExpand(weightdenum, lp, (int16_t*)WebRtcIlbcfix_kLpcChirpSyntDenum, (int16_t)lp_le… in WebRtcIlbcfix_DecoderInterpolateLsp() 58 WebRtcIlbcfix_LspInterpolate2PolyDec(lp, lsfdeq, lsfdeq2, in WebRtcIlbcfix_DecoderInterpolateLsp() 60 WEBRTC_SPL_MEMCPY_W16(syntdenum + pos,lp,lp_length); in WebRtcIlbcfix_DecoderInterpolateLsp() 61 WebRtcIlbcfix_BwExpand(weightdenum + pos, lp, in WebRtcIlbcfix_DecoderInterpolateLsp() 69 WebRtcIlbcfix_LspInterpolate2PolyDec(lp, iLBCdec_inst->lsfdeqold, lsfdeq, in WebRtcIlbcfix_DecoderInterpolateLsp() 71 WEBRTC_SPL_MEMCPY_W16(syntdenum+pos,lp,lp_length); in WebRtcIlbcfix_DecoderInterpolateLsp() 72 WebRtcIlbcfix_BwExpand(weightdenum+pos, lp, in WebRtcIlbcfix_DecoderInterpolateLsp()
|
| /external/flac/src/libFLAC/include/private/ |
| D | lpc.h | 100 * Computes LP coefficients for orders 1..max_order. 105 * IN 0 < max_order <= FLAC__MAX_LPC_ORDER max LP order to compute 106 * OUT lp_coeff[0,max_order-1][0,max_order-1] LP coefficients for each order 114 * Example: if max_order is 9, the LP coefficients for order 9 will be 115 * in lp_coeff[8][0,8], the LP coefficients for order 8 will be 123 * Quantizes the LP coefficients. NOTE: precision + bits_per_sample 126 * IN lp_coeff[0,order-1] LP coefficients 127 * IN order LP order 133 * LP coefficients. NOTE: could be negative. 150 * IN qlp_coeff[0,order-1] quantized LP coefficients [all …]
|
| /external/llvm/test/Transforms/BDCE/ |
| D | order.ll | 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/SLPVectorizer/X86/ |
| D | operandorder.ll | 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 59 br label %lp 61 lp: 62 %p = phi double [ 1.000000e+00, %lp ], [ 0.000000e+00, %entry ] 71 br i1 undef, label %lp, label %ext 84 br label %lp 86 lp: [all …]
|
| /external/lzma/C/ |
| D | LzmaLib.h | 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. 37 -1 for any from: level, loc, lp, pb, fb, numThreads 68 lp - The number of literal pos bits (low bits of current position for literals). 70 The lp switch is intended for periodical data when the period is equal to 2^lp. 71 For example, for 32-bit (4 bytes) periodical data you can use lp=2. Often it's 72 better to set lc=0, if you change lp switch. 101 int lp, /* 0 <= lp <= 4, default = 0 */
|
| /external/xz-java/src/org/tukaani/xz/ |
| D | LZMAInputStream.java | 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() 107 * the given dictionary size, lc, and lp. Note that pb isn't needed. 116 * @param lp number of literal position bits, must be 121 public static int getMemoryUsage(int dictSize, int lc, int lp) { in getMemoryUsage() argument 122 if (lc < 0 || lc > 8 || lp < 0 || lp > 4) in getMemoryUsage() 123 throw new IllegalArgumentException("Invalid lc or lp"); in getMemoryUsage() [all …]
|
| /external/ltp/testcases/kernel/fs/fsx-linux/ |
| D | fsx-linux.c | 190 struct log_entry *lp; in logdump() local 204 lp = &oplog[i]; in logdump() 205 prt("%d: %lu.%06lu ", opnum, lp->tv.tv_sec, lp->tv.tv_usec); in logdump() 207 switch (lp->operation) { in logdump() 210 lp->args[0], lp->args[0] + lp->args[1] - 1, in logdump() 211 lp->args[1]); in logdump() 212 if (badoff >= lp->args[0] && badoff < in logdump() 213 lp->args[0] + lp->args[1]) in logdump() 218 lp->args[0], lp->args[0] + lp->args[1] - 1, in logdump() 219 lp->args[1]); in logdump() [all …]
|
| /external/llvm/test/Analysis/CFLAliasAnalysis/Steensgaard/ |
| D | interproc-ret-deref-arg-multilevel.ll | 24 ; CHECK: MayAlias: i32* %a, i32* %lp 25 ; CHECK: NoAlias: i32* %b, i32* %lp 26 ; CHECK: NoAlias: i32* %lp, i32** %p 27 ; CHECK: NoAlias: i32* %lp, i32*** %pp 28 ; CHECK: MayAlias: i32* %c, i32* %lp 29 ; CHECK: NoAlias: i32* %lp, i32** %lpp 30 ; CHECK: MayAlias: i32* %lp, i32* %lpp_deref 43 %lp = load i32*, i32** %p
|
| /external/libcups/man/ |
| D | lp.1 | 2 .\" lp man page for CUPS. 10 .TH lp 1 "CUPS" "26 April 2019" "Apple Inc." 14 .B lp 53 .B lp 85 \fBlp\fR submits files for printing or alters a pending job. 95 The following options are recognized by \fIlp\fR: 200 The \fI-q\fR option accepts a different range of values than the Solaris lp command, matching the I… 205 lp -n 2 filename 211 lp -d foo -o media=legal -o sides=two-sided-long-edge filename 217 lp -d bar -o number-up=2 filename
|