Searched defs:ds (Results 1 - 25 of 186) sorted by relevance

12345678

/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-regr6/
H A Dmodule.py2 ds = { variable
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dshmctl.cc15 struct shmid_ds ds; local
16 int res = shmctl(id, IPC_STAT, &ds);
18 printf("shm_segsz: %zd\n", ds.shm_segsz);
19 assert(ds.shm_segsz == 4096);
/external/libcxx/test/libcxx/experimental/containers/sequences/dynarray/dynarray.overview/
H A Dbegin_end.pass.cpp50 std::ptrdiff_t ds = static_cast<std::ptrdiff_t>(dyn.size()); local
51 assert (ds == std::distance ( dyn.begin(), dyn.end()));
52 assert (ds == std::distance ( dyn.cbegin(), dyn.cend()));
53 assert (ds == std::distance ( dyn.rbegin(), dyn.rend()));
54 assert (ds == std::distance ( dyn.crbegin(), dyn.crend()));
73 std::ptrdiff_t ds = static_cast<std::ptrdiff_t>(dyn.size()); local
74 assert (ds == std::distance ( dyn.begin(), dyn.end()));
75 assert (ds == std::distance ( dyn.cbegin(), dyn.cend()));
76 assert (ds == std::distance ( dyn.rbegin(), dyn.rend()));
77 assert (ds
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dgen6_depthstencil.c36 struct gen6_depth_stencil_state *ds; local
42 ds = brw_state_batch(brw, AUB_TRACE_DEPTH_STENCIL_STATE,
43 sizeof(*ds), 64,
45 memset(ds, 0, sizeof(*ds));
51 ds->ds0.stencil_enable = 1;
52 ds->ds0.stencil_func =
54 ds->ds0.stencil_fail_op =
56 ds->ds0.stencil_pass_depth_fail_op =
58 ds
[all...]
/external/valgrind/memcheck/tests/linux/
H A Dbrk.c13 void* ds = orig_ds; local
19 vals[2] = ds - 0x1; // small shrink
20 vals[3] = ds;
21 vals[4] = ds + 0x1000; // small growth
22 vals[5] = ds + 0x40000000; // too-big growth
23 vals[6] = ds + 0x500; // shrink a little, but still above start size
24 vals[7] = ds - 0x1; // shrink below start size
25 // vals[8] = ds - 0x1000; // shrink a lot below start size (into text)
/external/icu/android_icu4j/src/main/java/android/icu/impl/duration/
H A DBasicPeriodFormatterService.java25 private PeriodFormatterDataService ds; field in class:BasicPeriodFormatterService
34 PeriodFormatterDataService ds = ResourceBasedPeriodFormatterDataService
36 instance = new BasicPeriodFormatterService(ds);
45 * @param ds the data service to use
47 public BasicPeriodFormatterService(PeriodFormatterDataService ds) { argument
48 this.ds = ds;
58 return new BasicPeriodFormatterFactory(ds);
63 return new BasicPeriodBuilderFactory(ds);
68 return ds
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
H A DBasicPeriodFormatterService.java23 private PeriodFormatterDataService ds; field in class:BasicPeriodFormatterService
32 PeriodFormatterDataService ds = ResourceBasedPeriodFormatterDataService
34 instance = new BasicPeriodFormatterService(ds);
43 * @param ds the data service to use
45 public BasicPeriodFormatterService(PeriodFormatterDataService ds) { argument
46 this.ds = ds;
56 return new BasicPeriodFormatterFactory(ds);
61 return new BasicPeriodBuilderFactory(ds);
66 return ds
[all...]
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_pipe_depthstencil.c76 struct svga_depth_stencil_state *ds = CALLOC_STRUCT( svga_depth_stencil_state ); local
82 ds->stencil[0].enabled = templ->stencil[0].enabled;
83 if (ds->stencil[0].enabled) {
84 ds->stencil[0].func = svga_translate_compare_func(templ->stencil[0].func);
85 ds->stencil[0].fail = svga_translate_stencil_op(templ->stencil[0].fail_op);
86 ds->stencil[0].zfail = svga_translate_stencil_op(templ->stencil[0].zfail_op);
87 ds->stencil[0].pass = svga_translate_stencil_op(templ->stencil[0].zpass_op);
92 ds->stencil_mask = templ->stencil[0].valuemask & 0xff;
93 ds->stencil_writemask = templ->stencil[0].writemask & 0xff;
97 ds
[all...]
/external/pdfium/third_party/agg23/
H A Dagg_conv_dash.h43 void dash_start(FX_FLOAT ds) argument
45 base_type::generator().dash_start(ds);
H A Dagg_vcgen_dash.cpp55 void vcgen_dash::dash_start(FX_FLOAT ds) argument
57 m_dash_start = ds;
58 calc_dash_start(FXSYS_fabs(ds));
60 void vcgen_dash::calc_dash_start(FX_FLOAT ds) argument
64 while(ds > 0) {
65 if(ds > m_dashes[m_curr_dash]) {
66 ds -= m_dashes[m_curr_dash];
73 m_curr_dash_start = ds;
74 ds = 0;
/external/strace/tests/
H A Dipc_msg.c79 struct msqid_ds ds; local
106 if (msgctl(id, IPC_STAT, &ds))
112 id, (unsigned) ds.msg_perm.uid, (unsigned) ds.msg_perm.gid,
113 (unsigned) ds.msg_perm.mode, (unsigned) ds.msg_perm.__key,
114 (unsigned) ds.msg_perm.cuid, (unsigned) ds.msg_perm.cgid,
115 (unsigned) ds.msg_stime, (unsigned) ds
[all...]
H A Dipc_shm.c70 struct shmid_ds ds; local
95 if (shmctl(id, IPC_STAT, &ds))
101 id, (unsigned) ds.shm_perm.uid, (unsigned) ds.shm_perm.gid,
102 (unsigned) ds.shm_perm.mode, (unsigned) ds.shm_perm.__key,
103 (unsigned) ds.shm_perm.cuid, (unsigned) ds.shm_perm.cgid,
104 (unsigned) ds.shm_segsz, (unsigned) ds
[all...]
H A Dipc_sem.c73 struct semid_ds ds; local
98 un.buf = &ds;
102 id, &ds);
109 un.buf = &ds;
112 id, &ds, sprintrc_grep(rc));
/external/strace/tests-m32/
H A Dipc_msg.c79 struct msqid_ds ds; local
106 if (msgctl(id, IPC_STAT, &ds))
112 id, (unsigned) ds.msg_perm.uid, (unsigned) ds.msg_perm.gid,
113 (unsigned) ds.msg_perm.mode, (unsigned) ds.msg_perm.__key,
114 (unsigned) ds.msg_perm.cuid, (unsigned) ds.msg_perm.cgid,
115 (unsigned) ds.msg_stime, (unsigned) ds
[all...]
H A Dipc_shm.c70 struct shmid_ds ds; local
95 if (shmctl(id, IPC_STAT, &ds))
101 id, (unsigned) ds.shm_perm.uid, (unsigned) ds.shm_perm.gid,
102 (unsigned) ds.shm_perm.mode, (unsigned) ds.shm_perm.__key,
103 (unsigned) ds.shm_perm.cuid, (unsigned) ds.shm_perm.cgid,
104 (unsigned) ds.shm_segsz, (unsigned) ds
[all...]
/external/strace/tests-mx32/
H A Dipc_msg.c79 struct msqid_ds ds; local
106 if (msgctl(id, IPC_STAT, &ds))
112 id, (unsigned) ds.msg_perm.uid, (unsigned) ds.msg_perm.gid,
113 (unsigned) ds.msg_perm.mode, (unsigned) ds.msg_perm.__key,
114 (unsigned) ds.msg_perm.cuid, (unsigned) ds.msg_perm.cgid,
115 (unsigned) ds.msg_stime, (unsigned) ds
[all...]
H A Dipc_shm.c70 struct shmid_ds ds; local
95 if (shmctl(id, IPC_STAT, &ds))
101 id, (unsigned) ds.shm_perm.uid, (unsigned) ds.shm_perm.gid,
102 (unsigned) ds.shm_perm.mode, (unsigned) ds.shm_perm.__key,
103 (unsigned) ds.shm_perm.cuid, (unsigned) ds.shm_perm.cgid,
104 (unsigned) ds.shm_segsz, (unsigned) ds
[all...]
/external/valgrind/none/tests/x86-solaris/
H A Dcoredump_single_thread.c10 uint16_t cs, ds, ss, es, fs, gs; local
16 "movw %%ds, %1\n"
21 : "=m" (cs), "=m" (ds), "=m" (ss), "=m" (es), "=m" (fs), "=m" (gs));
22 printf("cs=%#x ds=%#x ss=%#x es=%#x fs=%#x gs=%#x\n",
23 cs, ds, ss, es, fs, gs);
/external/autotest/test_suites/
H A Ddev_harness.py46 ds = dev_server.ImageServer.resolve(new_globals['build']) variable
50 repo_url = tools.package_url_pattern() % (ds.url(), new_globals['build'])
58 ds.trigger_download(new_globals['build'])
59 new_globals['devserver_url'] = ds.url()
/external/guice/extensions/persist/test/com/google/inject/persist/jpa/
H A DEnsureJpaCanTakeObjectsInPropertiesTest.java42 final DataSource ds; field in class:EnsureJpaCanTakeObjectsInPropertiesTest.DBModule
45 DBModule(DataSource ds, boolean passDataSource) { argument
46 this.ds = ds;
56 p.put(Environment.DATASOURCE, ds);
/external/libexif/libexif/
H A Dexif-mem.c14 exif_mem_alloc_func (ExifLong ds) argument
16 return calloc ((size_t) ds, 1);
21 exif_mem_realloc_func (void *d, ExifLong ds) argument
23 return realloc (d, (size_t) ds);
79 exif_mem_alloc (ExifMem *mem, ExifLong ds) argument
83 return mem->alloc_func ? mem->alloc_func (ds) :
84 mem->realloc_func (NULL, ds);
89 exif_mem_realloc (ExifMem *mem, void *d, ExifLong ds) argument
91 return (mem && mem->realloc_func) ? mem->realloc_func (d, ds) : NULL;
/external/syslinux/com32/include/syslinux/
H A Dbootrm.h50 uint16_t ds; /* Offset 6 */ member in struct:syslinux_rm_regs
/external/webrtc/webrtc/examples/peerconnection/server/
H A Dmain.cc27 void HandleBrowserRequest(DataSocket* ds, bool* quit) { argument
28 assert(ds && ds->valid());
31 const std::string& path = ds->request_path();
36 ds->Send("200 OK", true, "text/html", "",
38 } else if (ds->method() == DataSocket::OPTIONS) {
42 ds->Send("200 OK", true, "", "", "");
46 printf("Received an invalid request: %s\n", ds->request_path().c_str());
47 ds->Send("500 Sorry", true, "text/html", "",
/external/clang/test/CodeGen/
H A Dppc64-struct-onefloat.c7 typedef struct s5 { Sd ds; } SSd; member in struct:s5
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_dirty_surfaces.h51 util_dirty_surfaces_init(struct util_dirty_surfaces *ds) argument
53 LIST_INITHEAD(&ds->dirty_list);
62 struct util_dirty_surface *ds = LIST_ENTRY(struct util_dirty_surface, p, dirty_list); local
65 flush(pipe, &ds->base);
77 struct util_dirty_surface *ds = LIST_ENTRY(struct util_dirty_surface, p, dirty_list); local
80 if(ds->base.u.tex.level >= first && ds->base.u.tex.level <= last)
81 flush(pipe, &ds->base);
94 util_dirty_surface_init(struct util_dirty_surface *ds) argument
96 LIST_INITHEAD(&ds
100 util_dirty_surface_is_dirty(struct util_dirty_surface *ds) argument
106 util_dirty_surface_set_dirty(struct util_dirty_surfaces *dss, struct util_dirty_surface *ds) argument
113 util_dirty_surface_set_clean(struct util_dirty_surfaces *dss, struct util_dirty_surface *ds) argument
[all...]

Completed in 3591 milliseconds

12345678