Home
last modified time | relevance | path

Searched refs:lp (Results 1 – 25 of 608) sorted by relevance

12345678910>>...25

/external/adhd/cras/src/dsp/
Dcrossover2.c31 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()
36 float32x4_t x2 = {lp->x2L, hp->x2L, lp->x2R, hp->x2R}; in lr42_split()
37 float32x4_t y1 = {lp->y1L, hp->y1L, lp->y1R, hp->y1R}; in lr42_split()
38 float32x4_t y2 = {lp->y2L, hp->y2L, lp->y2R, hp->y2R}; in lr42_split()
39 float32x4_t z1 = {lp->z1L, hp->z1L, lp->z1R, hp->z1R}; in lr42_split()
40 float32x4_t z2 = {lp->z2L, hp->z2L, lp->z2R, hp->z2R}; in lr42_split()
41 float32x4_t b0 = {lp->b0, hp->b0, lp->b0, hp->b0}; in lr42_split()
42 float32x4_t b1 = {lp->b1, hp->b1, lp->b1, hp->b1}; in lr42_split()
43 float32x4_t b2 = {lp->b2, hp->b2, lp->b2, hp->b2}; in lr42_split()
[all …]
Dcrossover.c33 static void lr4_split(struct lr4 *lp, struct lr4 *hp, int count, float *data0, in lr4_split() argument
36 float lx1 = lp->x1; in lr4_split()
37 float lx2 = lp->x2; in lr4_split()
38 float ly1 = lp->y1; in lr4_split()
39 float ly2 = lp->y2; in lr4_split()
40 float lz1 = lp->z1; in lr4_split()
41 float lz2 = lp->z2; in lr4_split()
42 float lb0 = lp->b0; in lr4_split()
43 float lb1 = lp->b1; in lr4_split()
44 float lb2 = lp->b2; in lr4_split()
[all …]
/external/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_draw_arrays.c56 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 …]
Dlp_surface.c67 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()
85 if (!util_blitter_is_blit_supported(lp->blitter, &info)) { in lp_blit()
94 util_blitter_save_vertex_buffer_slot(lp->blitter, lp->vertex_buffer); in lp_blit()
95 util_blitter_save_vertex_elements(lp->blitter, (void*)lp->velems); in lp_blit()
96 util_blitter_save_vertex_shader(lp->blitter, (void*)lp->vs); in lp_blit()
97 util_blitter_save_geometry_shader(lp->blitter, (void*)lp->gs); in lp_blit()
98 util_blitter_save_so_targets(lp->blitter, lp->num_so_targets, in lp_blit()
99 (struct pipe_stream_output_target**)lp->so_targets); in lp_blit()
100 util_blitter_save_rasterizer(lp->blitter, (void*)lp->rasterizer); in lp_blit()
[all …]
Dlp_state_surface.c52 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 …]
Dlp_state_setup.c708 struct llvmpipe_context *lp) in generate_setup_variant() argument
733 variant->gallivm = gallivm = gallivm_create(func_name, lp->context); 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->twoside = lp->rasterizer->light_twoside; in lp_make_setup_variant_key()
850 key->color_slot = lp->color_slot[0]; in lp_make_setup_variant_key()
851 key->bcolor_slot = lp->bcolor_slot[0]; in lp_make_setup_variant_key()
852 key->spec_slot = lp->color_slot[1]; in lp_make_setup_variant_key()
[all …]
/external/mksh/src/
Dlalloc.c48 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/u-boot/fs/ubifs/
Dgc.c459 int ubifs_garbage_collect_leb(struct ubifs_info *c, struct ubifs_lprops *lp) in ubifs_garbage_collect_leb() argument
464 int err = 0, lnum = lp->lnum; in ubifs_garbage_collect_leb()
471 if (lp->free + lp->dirty == c->leb_size) { in ubifs_garbage_collect_leb()
473 dbg_gc("LEB %d is free, return it", lp->lnum); in ubifs_garbage_collect_leb()
474 ubifs_assert(!(lp->flags & LPROPS_INDEX)); in ubifs_garbage_collect_leb()
476 if (lp->free != c->leb_size) { in ubifs_garbage_collect_leb()
485 err = ubifs_change_one_lp(c, lp->lnum, c->leb_size, in ubifs_garbage_collect_leb()
490 err = ubifs_leb_unmap(c, lp->lnum); in ubifs_garbage_collect_leb()
517 lnum, lp->free, lp->dirty); in ubifs_garbage_collect_leb()
553 lnum, lp->free, lp->dirty); in ubifs_garbage_collect_leb()
[all …]
Dlprops.c188 struct ubifs_lprops *lp; in add_to_lpt_heap() local
190 lp = heap->arr[cpos]; in add_to_lpt_heap()
191 lp->flags &= ~LPROPS_CAT_MASK; in add_to_lpt_heap()
192 lp->flags |= LPROPS_UNCAT; in add_to_lpt_heap()
193 list_add(&lp->list, &c->uncat_list); in add_to_lpt_heap()
526 const struct ubifs_lprops *lp, in ubifs_change_lp() argument
534 struct ubifs_lprops *lprops = (struct ubifs_lprops *)lp; in ubifs_change_lp()
658 const struct ubifs_lprops *lp; in ubifs_change_one_lp() local
662 lp = ubifs_lpt_lookup_dirty(c, lnum); in ubifs_change_one_lp()
663 if (IS_ERR(lp)) { in ubifs_change_one_lp()
[all …]
Dreplay.c92 const struct ubifs_lprops *lp; in set_bud_lprops() local
97 lp = ubifs_lpt_lookup_dirty(c, b->bud->lnum); in set_bud_lprops()
98 if (IS_ERR(lp)) { in set_bud_lprops()
99 err = PTR_ERR(lp); in set_bud_lprops()
103 dirty = lp->dirty; in set_bud_lprops()
104 if (b->bud->start == 0 && (lp->free != c->leb_size || lp->dirty != 0)) { in set_bud_lprops()
125 lp->free, lp->dirty); in set_bud_lprops()
127 lp->free, lp->dirty); in set_bud_lprops()
128 dirty -= c->leb_size - lp->free; in set_bud_lprops()
138 b->bud->lnum, lp->free, lp->dirty, b->free, in set_bud_lprops()
[all …]
/external/u-boot/drivers/net/
Dpcnet.c87 static pcnet_priv_t *lp; variable
334 if (lp == NULL) { in pcnet_init()
337 lp = (pcnet_priv_t *)addr; in pcnet_init()
340 sizeof(*lp->uc)); in pcnet_init()
341 flush_dcache_range(addr, addr + sizeof(*lp->uc)); in pcnet_init()
343 lp->uc = (struct pcnet_uncached_priv *)addr; in pcnet_init()
346 sizeof(*lp->rx_buf)); in pcnet_init()
347 flush_dcache_range(addr, addr + sizeof(*lp->rx_buf)); in pcnet_init()
348 lp->rx_buf = (void *)addr; in pcnet_init()
351 uc = lp->uc; in pcnet_init()
[all …]
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
Dsimple_interpolate_lsf.c50 int16_t lp[LPC_FILTERORDER + 1]; in WebRtcIlbcfix_SimpleInterpolateLsf() local
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()
81 WebRtcIlbcfix_LsfInterpolate2PloyEnc(lp, lsfdeq, lsfdeq2, in WebRtcIlbcfix_SimpleInterpolateLsf()
84 WEBRTC_SPL_MEMCPY_W16(syntdenum + pos, lp, lp_length); in WebRtcIlbcfix_SimpleInterpolateLsf()
87 WebRtcIlbcfix_LsfInterpolate2PloyEnc(lp, lsf, lsf2, in WebRtcIlbcfix_SimpleInterpolateLsf()
90 WebRtcIlbcfix_BwExpand(weightdenum + pos, lp, in WebRtcIlbcfix_SimpleInterpolateLsf()
107 WebRtcIlbcfix_LsfInterpolate2PloyEnc(lp, lsfdeqold, lsfdeq, in WebRtcIlbcfix_SimpleInterpolateLsf()
[all …]
Ddecoder_interpolate_lsf.c39 int16_t lp[LPC_FILTERORDER + 1], *lsfdeq2; in WebRtcIlbcfix_DecoderInterpolateLsp() local
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()
58 WEBRTC_SPL_MEMCPY_W16(syntdenum + pos,lp,lp_length); in WebRtcIlbcfix_DecoderInterpolateLsp()
59 WebRtcIlbcfix_BwExpand(weightdenum + pos, lp, in WebRtcIlbcfix_DecoderInterpolateLsp()
67 WebRtcIlbcfix_LspInterpolate2PolyDec(lp, iLBCdec_inst->lsfdeqold, lsfdeq, in WebRtcIlbcfix_DecoderInterpolateLsp()
69 WEBRTC_SPL_MEMCPY_W16(syntdenum+pos,lp,lp_length); in WebRtcIlbcfix_DecoderInterpolateLsp()
70 WebRtcIlbcfix_BwExpand(weightdenum+pos, lp, in WebRtcIlbcfix_DecoderInterpolateLsp()
/external/xz-java/src/org/tukaani/xz/
DLZMAInputStream.java99 int lp = props / 9; in getMemoryUsage() local
100 int lc = props - lp * 9; in getMemoryUsage()
102 return getMemoryUsage(dictSize, lc, lp); in getMemoryUsage()
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()
133 + ((2 * 0x300) << (lc + lp)) / 1024; in getMemoryUsage()
494 int lc, int lp, int pb, in LZMAInputStream() argument
497 initialize(in, uncompSize, lc, lp, pb, dictSize, presetDict, in LZMAInputStream()
542 int lc, int lp, int pb, in LZMAInputStream() argument
546 initialize(in, uncompSize, lc, lp, pb, dictSize, presetDict, in LZMAInputStream()
[all …]
DLZMA2Options.java135 private int lp; field in LZMA2Options
171 public LZMA2Options(int dictSize, int lc, int lp, int pb, int mode, in LZMA2Options() argument
175 setLcLp(lc, lp); in LZMA2Options()
205 lp = LP_DEFAULT; in setPreset()
294 public void setLcLp(int lc, int lp) throws UnsupportedOptionsException { in setLcLp() argument
295 if (lc < 0 || lp < 0 || lc > LC_LP_MAX || lp > LC_LP_MAX in setLcLp()
296 || lc + lp > LC_LP_MAX) in setLcLp()
299 + lc + " + " + lp); in setLcLp()
302 this.lp = lp; in setLcLp()
332 setLcLp(lc, lp); in setLc()
[all …]
/external/ltp/testcases/kernel/fs/fsx-linux/
Dfsx-linux.c190 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/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/BDCE/
Dorder.ll21 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/
Dorder.ll21 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/Inline/
Dinvoke-combine-clauses.ll21 %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/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/Inline/
Dinvoke-combine-clauses.ll21 %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/
Dpermutationmatrices.cpp34 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/tcpdump/
Dutil-print.c482 tok2strbuf(register const struct tok *lp, register const char *fmt, in tok2strbuf() argument
485 if (lp != NULL) { in tok2strbuf()
486 while (lp->s != NULL) { in tok2strbuf()
487 if (lp->v == v) in tok2strbuf()
488 return (lp->s); in tok2strbuf()
489 ++lp; in tok2strbuf()
503 tok2str(register const struct tok *lp, register const char *fmt, in tok2str() argument
512 return tok2strbuf(lp, fmt, v, ret, sizeof(buf[0])); in tok2str()
521 bittok2str_internal(register const struct tok *lp, register const char *fmt, in bittok2str_internal() argument
531 while (lp != NULL && lp->s != NULL) { in bittok2str_internal()
[all …]
/external/ltp/testcases/network/tcp_cmds/sendfile/
Dtestsf_s.c37 char *lp; in main() local
127 lp = &rbuf[0]; in main()
132 while (*lp != '=') { /* convert ascii to integer */ in main()
133 nbuf[count] = *lp; in main()
135 lp++; in main()
141 lp++; in main()
143 tst_resm(TINFO, "The file to send is %s\n", lp); in main()
145 if ((fd = open(lp, O_RDONLY)) < 0) { in main()
165 tst_resm(TINFO, "File %s sent in %d parts\n", lp, chunks); in main()
/external/pdfium/third_party/libtiff/
Dtif_swab.c47 TIFFSwabLong(uint32* lp) in TIFFSwabLong() argument
49 register unsigned char* cp = (unsigned char*) lp; in TIFFSwabLong()
59 TIFFSwabLong8(uint64* lp) in TIFFSwabLong8() argument
61 register unsigned char* cp = (unsigned char*) lp; in TIFFSwabLong8()
105 TIFFSwabArrayOfLong(register uint32* lp, tmsize_t n) in TIFFSwabArrayOfLong() argument
112 cp = (unsigned char *)lp; in TIFFSwabArrayOfLong()
115 lp++; in TIFFSwabArrayOfLong()
122 TIFFSwabArrayOfLong8(register uint64* lp, tmsize_t n) in TIFFSwabArrayOfLong8() argument
129 cp = (unsigned char *)lp; in TIFFSwabArrayOfLong8()
134 lp++; in TIFFSwabArrayOfLong8()
/external/llvm/test/Analysis/CFLAliasAnalysis/Steensgaard/
Dinterproc-ret-deref-arg-multilevel.ll24 ; 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

12345678910>>...25