/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_speed_features.c | 54 SPEED_FEATURES *sf, int speed) { in set_good_speed_feature() argument 55 sf->adaptive_rd_thresh = 1; in set_good_speed_feature() 56 sf->recode_loop = (speed < 1) ? ALLOW_RECODE : ALLOW_RECODE_KFMAXBW; in set_good_speed_feature() 57 sf->allow_skip_recode = 1; in set_good_speed_feature() 60 sf->use_square_partition_only = !frame_is_intra_only(cm); in set_good_speed_feature() 61 sf->less_rectangular_check = 1; in set_good_speed_feature() 62 sf->tx_size_search_method = frame_is_boosted(cpi) ? USE_FULL_RD in set_good_speed_feature() 66 sf->disable_split_mask = cm->show_frame ? DISABLE_ALL_SPLIT in set_good_speed_feature() 69 sf->disable_split_mask = DISABLE_COMPOUND_SPLIT; in set_good_speed_feature() 70 sf->use_rd_breakout = 1; in set_good_speed_feature() [all …]
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_scale.c | 15 static INLINE int scaled_x(int val, const struct scale_factors *sf) { in scaled_x() argument 16 return (int)((int64_t)val * sf->x_scale_fp >> REF_SCALE_SHIFT); in scaled_x() 19 static INLINE int scaled_y(int val, const struct scale_factors *sf) { in scaled_y() argument 20 return (int)((int64_t)val * sf->y_scale_fp >> REF_SCALE_SHIFT); in scaled_y() 23 static int unscaled_value(int val, const struct scale_factors *sf) { in unscaled_value() argument 24 (void) sf; in unscaled_value() 36 MV32 vp9_scale_mv(const MV *mv, int x, int y, const struct scale_factors *sf) { in vp9_scale_mv() argument 37 const int x_off_q4 = scaled_x(x << SUBPEL_BITS, sf) & SUBPEL_MASK; in vp9_scale_mv() 38 const int y_off_q4 = scaled_y(y << SUBPEL_BITS, sf) & SUBPEL_MASK; in vp9_scale_mv() 40 scaled_y(mv->row, sf) + y_off_q4, in vp9_scale_mv() [all …]
|
D | vp9_scale.h | 31 int (*scale_value_x)(int val, const struct scale_factors *sf); 32 int (*scale_value_y)(int val, const struct scale_factors *sf); 37 MV32 vp9_scale_mv(const MV *mv, int x, int y, const struct scale_factors *sf); 39 void vp9_setup_scale_factors_for_frame(struct scale_factors *sf, 43 static INLINE int vp9_is_valid_scale(const struct scale_factors *sf) { in vp9_is_valid_scale() argument 44 return sf->x_scale_fp != REF_INVALID_SCALE && in vp9_is_valid_scale() 45 sf->y_scale_fp != REF_INVALID_SCALE; in vp9_is_valid_scale() 48 static INLINE int vp9_is_scaled(const struct scale_factors *sf) { in vp9_is_scaled() argument 49 return vp9_is_valid_scale(sf) && in vp9_is_scaled() 50 (sf->x_scale_fp != REF_NO_SCALE || sf->y_scale_fp != REF_NO_SCALE); in vp9_is_scaled()
|
D | vp9_reconinter.h | 36 const struct scale_factors *sf, 43 const struct scale_factors *sf) { in scaled_buffer_offset() argument 44 const int x = sf ? sf->scale_value_x(x_offset, sf) : x_offset; in scaled_buffer_offset() 45 const int y = sf ? sf->scale_value_y(y_offset, sf) : y_offset; in scaled_buffer_offset() 66 const struct scale_factors *sf);
|
D | vp9_reconinter.c | 70 const struct scale_factors *sf, in inter_predictor() argument 74 sf->predict[subpel_x != 0][subpel_y != 0][ref]( in inter_predictor() 82 const struct scale_factors *sf, in vp9_build_inter_predictor() argument 90 MV32 mv = vp9_scale_mv(&mv_q4, x, y, sf); in vp9_build_inter_predictor() 97 sf, w, h, ref, kernel, sf->x_step_q4, sf->y_step_q4); in vp9_build_inter_predictor() 188 const struct scale_factors *const sf = &xd->block_refs[ref]->sf; in build_inter_predictors() local 209 if (vp9_is_scaled(sf)) { in build_inter_predictors() 210 pre = pre_buf->buf + scaled_buffer_offset(x, y, pre_buf->stride, sf); in build_inter_predictors() 211 scaled_mv = vp9_scale_mv(&mv_q4, mi_x + x, mi_y + y, sf); in build_inter_predictors() 212 xs = sf->x_step_q4; in build_inter_predictors() [all …]
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_sf_state.c | 53 sizeof(*sfv), 32, &brw->sf.vp_offset); in upload_sf_vp() 144 struct brw_sf_unit_state *sf; in upload_sf_unit() local 149 sf = brw_state_batch(brw, AUB_TRACE_SF_STATE, in upload_sf_unit() 150 sizeof(*sf), 64, &brw->sf.state_offset); in upload_sf_unit() 152 memset(sf, 0, sizeof(*sf)); in upload_sf_unit() 155 sf->thread0.grf_reg_count = ALIGN(brw->sf.prog_data->total_grf, 16) / 16 - 1; in upload_sf_unit() 156 sf->thread0.kernel_start_pointer = in upload_sf_unit() 158 brw->sf.state_offset + in upload_sf_unit() 160 brw->sf.prog_offset + in upload_sf_unit() 161 (sf->thread0.grf_reg_count << 1)) >> 6; in upload_sf_unit() [all …]
|
/external/antlr/antlr-3.4/runtime/JavaScript/third/ |
D | antcontrib.properties | 1 antclipse=net.sf.antcontrib.antclipse.ClassPathTask 2 antserver=net.sf.antcontrib.antserver.server.ServerTask 3 remoteant=net.sf.antcontrib.antserver.client.ClientTask 4 verifydesign=net.sf.antcontrib.design.VerifyDesign 5 inifile=net.sf.antcontrib.inifile.IniFileTask 6 if=net.sf.antcontrib.logic.IfTask 7 foreach=net.sf.antcontrib.logic.ForEach 8 for=net.sf.antcontrib.logic.ForTask 9 throw=net.sf.antcontrib.logic.Throw 10 trycatch=net.sf.antcontrib.logic.TryCatchTask [all …]
|
/external/mesa3d/src/gallium/drivers/nv50/ |
D | nv50_resource.c | 38 struct nv50_surface *sf = CALLOC_STRUCT(nv50_surface); in nv50_surface_from_buffer() local 39 if (!sf) in nv50_surface_from_buffer() 42 pipe_reference_init(&sf->base.reference, 1); in nv50_surface_from_buffer() 43 pipe_resource_reference(&sf->base.texture, pbuf); in nv50_surface_from_buffer() 45 sf->base.format = templ->format; in nv50_surface_from_buffer() 46 sf->base.usage = templ->usage; in nv50_surface_from_buffer() 47 sf->base.u.buf.first_element = templ->u.buf.first_element; in nv50_surface_from_buffer() 48 sf->base.u.buf.last_element = templ->u.buf.last_element; in nv50_surface_from_buffer() 50 sf->offset = in nv50_surface_from_buffer() 51 templ->u.buf.first_element * util_format_get_blocksize(sf->base.format); in nv50_surface_from_buffer() [all …]
|
D | nv50_state_validate.c | 23 struct nv50_surface *sf = nv50_surface(fb->cbufs[i]); in nv50_validate_fb() local 27 PUSH_DATAh(push, bo->offset + sf->offset); in nv50_validate_fb() 28 PUSH_DATA (push, bo->offset + sf->offset); in nv50_validate_fb() 29 PUSH_DATA (push, nv50_format_table[sf->base.format].rt); in nv50_validate_fb() 31 PUSH_DATA (push, mt->level[sf->base.u.tex.level].tile_mode); in nv50_validate_fb() 34 PUSH_DATA (push, sf->width); in nv50_validate_fb() 35 PUSH_DATA (push, sf->height); in nv50_validate_fb() 37 PUSH_DATA (push, sf->depth); in nv50_validate_fb() 43 PUSH_DATA (push, sf->height); in nv50_validate_fb() 64 struct nv50_surface *sf = nv50_surface(fb->zsbuf); in nv50_validate_fb() local [all …]
|
/external/pcre/dist/ |
D | Makefile.am | 732 ln -sf pcre_assign_jit_stack.3 $(DESTDIR)$(man3dir)/pcre16_assign_jit_stack.3 733 ln -sf pcre_compile.3 $(DESTDIR)$(man3dir)/pcre16_compile.3 734 ln -sf pcre_compile2.3 $(DESTDIR)$(man3dir)/pcre16_compile2.3 735 ln -sf pcre_config.3 $(DESTDIR)$(man3dir)/pcre16_config.3 736 ln -sf pcre_copy_named_substring.3 $(DESTDIR)$(man3dir)/pcre16_copy_named_substring.3 737 ln -sf pcre_copy_substring.3 $(DESTDIR)$(man3dir)/pcre16_copy_substring.3 738 ln -sf pcre_dfa_exec.3 $(DESTDIR)$(man3dir)/pcre16_dfa_exec.3 739 ln -sf pcre_exec.3 $(DESTDIR)$(man3dir)/pcre16_exec.3 740 ln -sf pcre_free_study.3 $(DESTDIR)$(man3dir)/pcre16_free_study.3 741 ln -sf pcre_free_substring.3 $(DESTDIR)$(man3dir)/pcre16_free_substring.3 [all …]
|
/external/mesa3d/src/gallium/drivers/nv30/ |
D | nv30_clear.c | 102 struct nv30_surface *sf = nv30_surface(ps); in nv30_clear_render_target() local 117 rt_format |= util_logbase2(sf->width) << 16; in nv30_clear_render_target() 118 rt_format |= util_logbase2(sf->height) << 24; in nv30_clear_render_target() 132 PUSH_DATA (push, sf->width << 16); in nv30_clear_render_target() 133 PUSH_DATA (push, sf->height << 16); in nv30_clear_render_target() 137 PUSH_DATA (push, (sf->pitch << 16) | sf->pitch); in nv30_clear_render_target() 139 PUSH_DATA (push, sf->pitch); in nv30_clear_render_target() 140 PUSH_RELOC(push, mt->base.bo, sf->offset, NOUVEAU_BO_LOW, 0, 0); in nv30_clear_render_target() 161 struct nv30_surface *sf = nv30_surface(ps); in nv30_clear_depth_stencil() local 176 rt_format |= util_logbase2(sf->width) << 16; in nv30_clear_depth_stencil() [all …]
|
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/ |
D | SimpleFormatterTest.java | 33 SimpleFormatter sf; field in SimpleFormatterTest 44 sf = new SimpleFormatter(); in setUp() 50 sf.format(null); in testFormatNull() 54 sf.format(new LogRecord(Level.SEVERE, null)); in testFormatNull() 64 String str = sf.format(lr); in testLocalizedFormat() 71 str = sf.format(lr); in testLocalizedFormat() 77 String str = sf.format(lr); 96 str = sf.format(lr); 108 assertEquals("", sf.getHead(null)); in testGetHead() 112 assertEquals("", sf.getTail(null)); in testGetTail()
|
/external/apache-harmony/x-net/src/test/impl/java.injected/javax/net/ |
D | SocketFactoryTest.java | 42 SocketFactory sf = new MySocketFactory(); in testCreateSocket() local 44 sf.createSocket(); in testCreateSocket() 56 SocketFactory sf = SocketFactory.getDefault(); in testGetDefault() local 58 if (!(sf instanceof DefaultSocketFactory)) { in testGetDefault() 62 s = sf.createSocket("localhost", 8082); in testGetDefault() 67 s = sf.createSocket("localhost", 8081, InetAddress.getLocalHost(), 8082); in testGetDefault() 72 s = sf.createSocket(InetAddress.getLocalHost(), 8081); in testGetDefault() 77 s = sf.createSocket(InetAddress.getLocalHost(), 8081, InetAddress.getLocalHost(), 8082); in testGetDefault()
|
D | ServerSocketFactoryTest.java | 42 ServerSocketFactory sf = new MyServerSocketFactory(); in testCreateServerSocket() local 44 sf.createServerSocket(); in testCreateServerSocket() 56 ServerSocketFactory sf = ServerSocketFactory.getDefault(); in testGetDefault() local 58 if (!(sf instanceof DefaultServerSocketFactory)) { in testGetDefault() 62 s = sf.createServerSocket(0); in testGetDefault() 67 s = sf.createServerSocket(0, 50); in testGetDefault() 72 s = sf.createServerSocket(0, 50, InetAddress.getLocalHost()); in testGetDefault()
|
/external/eigen/test/ |
D | mixingtypes.cpp | 47 float sf = internal::random<float>(); in mixingtypes() local 61 VERIFY_IS_APPROX(vcf * sf , vcf * complex<float>(sf)); in mixingtypes() 101 VERIFY_IS_APPROX(sf*mf*mcf, sf*mf.template cast<CF>()*mcf); in mixingtypes() 102 VERIFY_IS_APPROX(sf*mcf*mf, sf*mcf*mf.template cast<CF>()); in mixingtypes() 106 VERIFY_IS_APPROX(sf*mf*vcf, (sf*mf).template cast<CF>().eval()*vcf); in mixingtypes() 108 VERIFY_IS_APPROX(sf*mcf*vf, sf*mcf*vf.template cast<CF>()); in mixingtypes() 111 VERIFY_IS_APPROX(sf*vcf.adjoint()*mf, sf*vcf.adjoint()*mf.template cast<CF>().eval()); in mixingtypes() 113 VERIFY_IS_APPROX(sf*vf.adjoint()*mcf, sf*vf.adjoint().template cast<CF>().eval()*mcf); in mixingtypes()
|
/external/ppp/pppd/plugins/radius/ |
D | buildreq.c | 95 FILE *sf; in rc_get_seqnbr() local 100 if ((sf = fopen(seqfile, "a+")) == NULL) in rc_get_seqnbr() 107 while (do_lock_exclusive(fileno(sf))!= 0) in rc_get_seqnbr() 111 fclose(sf); in rc_get_seqnbr() 123 fclose(sf); in rc_get_seqnbr() 127 pos = ftell(sf); in rc_get_seqnbr() 128 rewind(sf); in rc_get_seqnbr() 129 if (fscanf(sf, "%d", &seq_nbr) != 1) { in rc_get_seqnbr() 130 if (pos != ftell(sf)) { in rc_get_seqnbr() 137 rewind(sf); in rc_get_seqnbr() [all …]
|
/external/libdrm/intel/tests/ |
D | gm45-3d.batch-ref.txt | 37 0x12300090: 0x60003f01: URB_FENCE: cs vfe sf clip gs vs 39 0x12300098: 0x18000062: sf fence: 98, vfe_fence: 0, cs_fence: 384 75 0x12300128: 0x60003f01: URB_FENCE: cs vfe sf clip gs vs 77 0x12300130: 0x18000062: sf fence: 98, vfe_fence: 0, cs_fence: 384 98 0x12300184: 0x60003f01: URB_FENCE: cs vfe sf clip gs vs 100 0x1230018c: 0x18000062: sf fence: 98, vfe_fence: 0, cs_fence: 384 116 0x123001cc: 0x60003f01: URB_FENCE: cs vfe sf clip gs vs 118 0x123001d4: 0x18000062: sf fence: 98, vfe_fence: 0, cs_fence: 384 134 0x12300214: 0x60003f01: URB_FENCE: cs vfe sf clip gs vs 136 0x1230021c: 0x18000062: sf fence: 98, vfe_fence: 0, cs_fence: 384 [all …]
|
D | gen4-3d.batch-ref.txt | 36 0x1230008c: 0x60003f01: URB_FENCE: cs vfe sf clip gs vs 38 0x12300094: 0x10000042: sf fence: 66, vfe_fence: 0, cs_fence: 256 74 0x12300124: 0x60003f01: URB_FENCE: cs vfe sf clip gs vs 76 0x1230012c: 0x10000042: sf fence: 66, vfe_fence: 0, cs_fence: 256 97 0x12300180: 0x60003f01: URB_FENCE: cs vfe sf clip gs vs 99 0x12300188: 0x10000042: sf fence: 66, vfe_fence: 0, cs_fence: 256 115 0x123001c8: 0x60003f01: URB_FENCE: cs vfe sf clip gs vs 117 0x123001d0: 0x10000042: sf fence: 66, vfe_fence: 0, cs_fence: 256 133 0x12300210: 0x60003f01: URB_FENCE: cs vfe sf clip gs vs 135 0x12300218: 0x10000042: sf fence: 66, vfe_fence: 0, cs_fence: 256 [all …]
|
D | gen5-3d.batch-ref.txt | 40 0x1230009c: 0x60003f01: URB_FENCE: cs vfe sf clip gs vs 42 0x123000a4: 0x40000184: sf fence: 388, vfe_fence: 0, cs_fence: 1024 81 0x12300140: 0x60003f01: URB_FENCE: cs vfe sf clip gs vs 83 0x12300148: 0x40000184: sf fence: 388, vfe_fence: 0, cs_fence: 1024 105 0x123001a0: 0x60003f01: URB_FENCE: cs vfe sf clip gs vs 107 0x123001a8: 0x40000184: sf fence: 388, vfe_fence: 0, cs_fence: 1024 124 0x123001ec: 0x60003f01: URB_FENCE: cs vfe sf clip gs vs 126 0x123001f4: 0x40000184: sf fence: 388, vfe_fence: 0, cs_fence: 1024 145 0x12300240: 0x60003f01: URB_FENCE: cs vfe sf clip gs vs 147 0x12300248: 0x40000184: sf fence: 388, vfe_fence: 0, cs_fence: 1024 [all …]
|
/external/toybox/tests/ |
D | readlink.test | 18 ln -sf notfound link 21 ln -sf ../../ link 24 ln -sf file link 26 ln -sf . link 51 ln -sf / link || exit 1 55 rm -f link && ln -sf link link || exit 1
|
/external/mesa3d/src/gallium/drivers/nvc0/ |
D | nvc0_state_validate.c | 11 struct nv50_surface *sf = nv50_surface(fb->zsbuf); in nvc0_validate_zcull() local 12 struct nv50_miptree *mt = nv50_miptree(sf->base.texture); in nvc0_validate_zcull() 73 struct nv50_surface *sf = nv50_surface(fb->cbufs[i]); in nvc0_validate_fb() local 74 struct nv04_resource *res = nv04_resource(sf->base.texture); in nvc0_validate_fb() 78 PUSH_DATAh(push, res->address + sf->offset); in nvc0_validate_fb() 79 PUSH_DATA (push, res->address + sf->offset); in nvc0_validate_fb() 81 struct nv50_miptree *mt = nv50_miptree(sf->base.texture); in nvc0_validate_fb() 83 assert(sf->base.texture->target != PIPE_BUFFER); in nvc0_validate_fb() 85 PUSH_DATA(push, sf->width); in nvc0_validate_fb() 86 PUSH_DATA(push, sf->height); in nvc0_validate_fb() [all …]
|
/external/valgrind/none/tests/x86/ |
D | aad_aam.c | 21 int cf __attribute__((unused)),pf,af __attribute__((unused)),zf,sf; in main() local 43 sf=!!(flags&0x80); in main() 56 if (sf != !!(out&0x80)) { in main() 90 sf=!!(flags&0x80); in main() 103 if (sf != !!(out&0x80)) { in main() 104 printf("Error with aad (sf) %d %d!\n",sf,!!(out&0x80)); in main()
|
/external/aac/libFDK/src/ |
D | FDK_trigFcts.cpp | 138 INT sf,sfo,stf; in fixp_atan2() local 145 q = fDivNormHighPrec( y, x, &sf); // both pos. in fixp_atan2() 148 q = -fDivNormHighPrec( y,-x, &sf); // x neg. in fixp_atan2() 152 sf = 0; in fixp_atan2() 158 q = -fDivNormHighPrec(-y, x, &sf); // y neg. in fixp_atan2() 161 q = fDivNormHighPrec(-y,-x, &sf); // both neg. in fixp_atan2() 165 sf = 0; in fixp_atan2() 170 sf = 0; in fixp_atan2() 172 sfo = sf; in fixp_atan2()
|
/external/libvncserver/test/ |
D | tjunittest.c | 144 tjscalingfactor sf, int flags) in checkBuf() argument 152 int halfway=16*sf.num/sf.denom; in checkBuf() 153 int blocksize=8*sf.num/sf.denom; in checkBuf() 274 int flags, tjscalingfactor sf) in _decompTest() argument 278 int scaledWidth=TJSCALED(w, sf); in _decompTest() 279 int scaledHeight=TJSCALED(h, sf); in _decompTest() 284 if(sf.num!=1 || sf.denom!=1) in _decompTest() 285 printf("%d/%d ... ", sf.num, sf.denom); in _decompTest() 303 if(checkBuf(dstBuf, scaledWidth, scaledHeight, pf, subsamp, sf, flags)) in _decompTest() 318 tjscalingfactor *sf=tjGetScalingFactors(&n), sf1={1, 1}; in decompTest() local [all …]
|
/external/valgrind/exp-sgcheck/ |
D | sg_main.c | 1328 static void initialise_II_hash_table ( StackFrame* sf ) in initialise_II_hash_table() argument 1331 sf->htab_size = N_HTAB_FIXED; /* initial hash table size */ in initialise_II_hash_table() 1332 sf->htab = &sf->htab_fixed[0]; in initialise_II_hash_table() 1333 tl_assert(sf->htab); in initialise_II_hash_table() 1334 sf->htab_used = 0; in initialise_II_hash_table() 1335 for (i = 0; i < sf->htab_size; i++) in initialise_II_hash_table() 1336 sf->htab[i].insn_addr = 0; /* NOT IN USE */ in initialise_II_hash_table() 1341 static void resize_II_hash_table ( StackFrame* sf ) in resize_II_hash_table() argument 1346 tl_assert(sf && sf->htab); in resize_II_hash_table() 1347 old_size = sf->htab_size; in resize_II_hash_table() [all …]
|