/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_speed_features.c | 48 SPEED_FEATURES *sf, in set_good_speed_feature_framesize_dependent() argument 54 sf->disable_split_mask = cm->show_frame ? DISABLE_ALL_SPLIT in set_good_speed_feature_framesize_dependent() 56 sf->partition_search_breakout_dist_thr = (1 << 23); in set_good_speed_feature_framesize_dependent() 58 sf->disable_split_mask = DISABLE_COMPOUND_SPLIT; in set_good_speed_feature_framesize_dependent() 59 sf->partition_search_breakout_dist_thr = (1 << 21); in set_good_speed_feature_framesize_dependent() 65 sf->disable_split_mask = cm->show_frame ? DISABLE_ALL_SPLIT in set_good_speed_feature_framesize_dependent() 67 sf->adaptive_pred_interp_filter = 0; in set_good_speed_feature_framesize_dependent() 68 sf->partition_search_breakout_dist_thr = (1 << 24); in set_good_speed_feature_framesize_dependent() 69 sf->partition_search_breakout_rate_thr = 120; in set_good_speed_feature_framesize_dependent() 71 sf->disable_split_mask = LAST_AND_INTRA_SPLIT_ONLY; in set_good_speed_feature_framesize_dependent() [all …]
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_scale.c | 16 static INLINE int scaled_x(int val, const struct scale_factors *sf) { in scaled_x() argument 17 return (int)((int64_t)val * sf->x_scale_fp >> REF_SCALE_SHIFT); in scaled_x() 20 static INLINE int scaled_y(int val, const struct scale_factors *sf) { in scaled_y() argument 21 return (int)((int64_t)val * sf->y_scale_fp >> REF_SCALE_SHIFT); in scaled_y() 24 static int unscaled_value(int val, const struct scale_factors *sf) { in unscaled_value() argument 25 (void) sf; in unscaled_value() 37 MV32 vp9_scale_mv(const MV *mv, int x, int y, const struct scale_factors *sf) { in vp9_scale_mv() argument 38 const int x_off_q4 = scaled_x(x << SUBPEL_BITS, sf) & SUBPEL_MASK; in vp9_scale_mv() 39 const int y_off_q4 = scaled_y(y << SUBPEL_BITS, sf) & SUBPEL_MASK; in vp9_scale_mv() 41 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); 40 MV32 vp9_scale_mv(const MV *mv, int x, int y, const struct scale_factors *sf); 43 void vp9_setup_scale_factors_for_frame(struct scale_factors *sf, 48 void vp9_setup_scale_factors_for_frame(struct scale_factors *sf, 53 static INLINE int vp9_is_valid_scale(const struct scale_factors *sf) { in vp9_is_valid_scale() argument 54 return sf->x_scale_fp != REF_INVALID_SCALE && in vp9_is_valid_scale() 55 sf->y_scale_fp != REF_INVALID_SCALE; in vp9_is_valid_scale() 58 static INLINE int vp9_is_scaled(const struct scale_factors *sf) { in vp9_is_scaled() argument 59 return vp9_is_valid_scale(sf) && in vp9_is_scaled() [all …]
|
D | vp9_reconinter.h | 27 const struct scale_factors *sf, in inter_predictor() argument 31 sf->predict[subpel_x != 0][subpel_y != 0][ref]( in inter_predictor() 41 const struct scale_factors *sf, 68 const struct scale_factors *sf, 78 const struct scale_factors *sf, 86 const struct scale_factors *sf) { in scaled_buffer_offset() argument 87 const int x = sf ? sf->scale_value_x(x_offset, sf) : x_offset; in scaled_buffer_offset() 88 const int y = sf ? sf->scale_value_y(y_offset, sf) : y_offset; in scaled_buffer_offset() 109 const struct scale_factors *sf);
|
D | vp9_reconinter.c | 27 const struct scale_factors *sf, in high_inter_predictor() argument 31 sf->highbd_predict[subpel_x != 0][subpel_y != 0][ref]( in high_inter_predictor() 39 const struct scale_factors *sf, in vp9_highbd_build_inter_predictor() argument 47 MV32 mv = vp9_scale_mv(&mv_q4, x, y, sf); in vp9_highbd_build_inter_predictor() 54 sf, w, h, ref, kernel, sf->x_step_q4, sf->y_step_q4, bd); in vp9_highbd_build_inter_predictor() 61 const struct scale_factors *sf, in vp9_build_inter_predictor() argument 69 MV32 mv = vp9_scale_mv(&mv_q4, x, y, sf); in vp9_build_inter_predictor() 76 sf, w, h, ref, kernel, sf->x_step_q4, sf->y_step_q4); in vp9_build_inter_predictor() 167 const struct scale_factors *const sf = &xd->block_refs[ref]->sf; in build_inter_predictors() local 187 const int is_scaled = vp9_is_scaled(sf); 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/guice/lib/build/ |
D | cglib-3.1.jar | ... net/sf/cglib/core/
net/sf/cglib/proxy/
net/sf/cglib ... |
/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/guice/extensions/persist/lib/ |
D | cglib-nodep-3.0.jar | ... net.sf.cglib.beans
abstract net.sf.cglib.beans.BeanCopier$BeanCopierKey extends java ... |
/external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/ |
D | screen_finder_unittest.py | 48 sf = self._GetScreenFinder('screen_3_frames.mov') 49 self.assertTrue(sf.HasNext()) 50 screen, corners = sf.GetNext() 56 self.assertTrue(sf.HasNext()) 57 screen, corners = sf.GetNext() 63 self.assertTrue(sf.HasNext()) 64 screen, corners = sf.GetNext() 70 self.assertFalse(sf.HasNext()) 73 sf.GetNext() 79 sf = self._GetScreenFinder(None) [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 …]
|
/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/libjpeg-turbo/ |
D | tjunittest.c | 181 tjscalingfactor sf, int flags) in checkBuf() argument 189 int halfway=16*sf.num/sf.denom; in checkBuf() 190 int blocksize=8*sf.num/sf.denom; in checkBuf() 298 tjscalingfactor sf) in checkBufYUV() argument 306 int halfway=16*sf.num/sf.denom; in checkBufYUV() 307 int blocksize=8*sf.num/sf.denom; in checkBufYUV() 326 int halfway=16/vsf*sf.num/sf.denom; in checkBufYUV() 415 tjscalingfactor sf={1, 1}; in compTest() local 427 if(checkBufYUV(yuvBuf, w, h, subsamp, sf)) printf("Passed.\n"); in compTest() 456 int flags, tjscalingfactor sf) in _decompTest() argument [all …]
|
/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/guice/core/src/com/google/inject/internal/ |
D | BytecodeGen.java | 81 = net.sf.cglib.proxy.Enhancer.class.getName().replaceFirst("\\.cglib\\..*$", ".cglib"); 83 static final net.sf.cglib.core.NamingPolicy FASTCLASS_NAMING_POLICY 84 = new net.sf.cglib.core.DefaultNamingPolicy() { 91 net.sf.cglib.core.Predicate names) { 100 static final net.sf.cglib.core.NamingPolicy ENHANCER_NAMING_POLICY 101 = new net.sf.cglib.core.DefaultNamingPolicy() { 109 net.sf.cglib.core.Predicate names) { 195 public static net.sf.cglib.reflect.FastClass newFastClass(Class<?> type, Visibility visibility) { in newFastClass() 196 net.sf.cglib.reflect.FastClass.Generator generator in newFastClass() 197 = new net.sf.cglib.reflect.FastClass.Generator(); in newFastClass() [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 …]
|