/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-regr6/ |
H A D | module.py | 2 ds = { variable
|
/external/compiler-rt/test/asan/TestCases/Linux/ |
H A D | shmctl.cc | 15 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/strace/tests/ |
H A D | ipc_msg.c | 37 struct msqid_ds ds; local 44 if (msgctl(id, IPC_STAT, &ds)) 50 id, (unsigned) ds.msg_perm.uid, (unsigned) ds.msg_perm.gid, 51 (unsigned) ds.msg_perm.mode, (unsigned) ds.msg_perm.__key, 52 (unsigned) ds.msg_perm.cuid, (unsigned) ds.msg_perm.cgid, 53 (unsigned) ds.msg_stime, (unsigned) ds [all...] |
H A D | ipc_shm.c | 37 struct shmid_ds ds; local 44 if (shmctl(id, IPC_STAT, &ds)) 50 id, (unsigned) ds.shm_perm.uid, (unsigned) ds.shm_perm.gid, 51 (unsigned) ds.shm_perm.mode, (unsigned) ds.shm_perm.__key, 52 (unsigned) ds.shm_perm.cuid, (unsigned) ds.shm_perm.cgid, 53 (unsigned) ds.shm_segsz, (unsigned) ds [all...] |
H A D | ipc_sem.c | 46 struct semid_ds ds; local 54 un.buf = &ds; 58 id, &ds); 67 un.buf = &ds; 77 " += -1 EINVAL \\(Invalid argument\\)\n", id, &ds); 80 " += %d\n", id, &ds, id);
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
H A D | gen6_depthstencil.c | 36 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 D | brk.c | 13 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 D | BasicPeriodFormatterService.java | 23 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; 54 return new BasicPeriodFormatterFactory(ds); 58 return new BasicPeriodBuilderFactory(ds); 62 return ds [all...] |
H A D | BasicPeriodFormatterFactory.java | 58 private final PeriodFormatterDataService ds; field in class:BasicPeriodFormatterFactory 65 BasicPeriodFormatterFactory(PeriodFormatterDataService ds) { argument 66 this.ds = ds; 207 data = ds.get(localeName); 214 return ds.get(locName);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/ |
H A D | BasicPeriodFormatterService.java | 21 private PeriodFormatterDataService ds; field in class:BasicPeriodFormatterService 30 PeriodFormatterDataService ds = ResourceBasedPeriodFormatterDataService 32 instance = new BasicPeriodFormatterService(ds); 41 * @param ds the data service to use 43 public BasicPeriodFormatterService(PeriodFormatterDataService ds) { argument 44 this.ds = ds; 52 return new BasicPeriodFormatterFactory(ds); 56 return new BasicPeriodBuilderFactory(ds); 60 return ds [all...] |
H A D | BasicPeriodFormatterFactory.java | 56 private final PeriodFormatterDataService ds; field in class:BasicPeriodFormatterFactory 63 BasicPeriodFormatterFactory(PeriodFormatterDataService ds) { argument 64 this.ds = ds; 205 data = ds.get(localeName); 212 return ds.get(locName);
|
/external/mesa3d/src/gallium/drivers/svga/ |
H A D | svga_pipe_depthstencil.c | 76 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 D | agg_conv_dash.h | 43 void dash_start(FX_FLOAT ds) argument 45 base_type::generator().dash_start(ds);
|
H A D | agg_vcgen_dash.cpp | 55 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/valgrind/none/tests/x86-solaris/ |
H A D | coredump_single_thread.c | 10 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 D | dev_harness.py | 46 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 D | EnsureJpaCanTakeObjectsInPropertiesTest.java | 42 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 D | exif-mem.c | 14 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/webrtc/webrtc/examples/peerconnection/server/ |
H A D | main.cc | 27 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 D | ppc64-struct-onefloat.c | 7 typedef struct s5 { Sd ds; } SSd; member in struct:s5
|
/external/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_dirty_surfaces.h | 51 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...] |
/external/compiler-rt/lib/asan/ |
H A D | asan_mac.cc | 209 void dispatch_source_set_cancel_handler(dispatch_source_t ds, 211 void dispatch_source_set_event_handler(dispatch_source_t ds, void(^work)(void)); 245 dispatch_source_t ds, void(^work)(void)) { 247 REAL(dispatch_source_set_cancel_handler)(ds, work); 252 REAL(dispatch_source_set_cancel_handler)(ds, asan_block); 256 dispatch_source_t ds, void(^work)(void)) { 259 REAL(dispatch_source_set_event_handler)(ds, asan_block); 244 INTERCEPTOR(void, dispatch_source_set_cancel_handler, dispatch_source_t ds, void(^work)(void)) argument 255 INTERCEPTOR(void, dispatch_source_set_event_handler, dispatch_source_t ds, void(^work)(void)) argument
|
/external/gemmlowp/internal/ |
H A D | compute.h | 53 int ds = std::min(block_params_.l1_depth, block_params_.l2_depth - d); local 58 ComputeL1(r, rs, 0, block_params_.l2_cols, d, ds);
|
/external/gptfdisk/ |
H A D | basicmbr.h | 88 void SetDiskSize(uint64_t ds) {diskSize = ds;} argument
|
/external/icu/icu4c/source/tools/toolutil/ |
H A D | swapimpl.cpp | 73 upname_swap(const UDataSwapper *ds, argument 77 int32_t headerSize=udata_swapDataHeader(ds, inData, length, outData, pErrorCode); 93 udata_printError(ds, "upname_swap(): data format %02x.%02x.%02x.%02x (format version %02x) is not recognized as pnames.icu\n", 108 udata_printError(ds, "upname_swap(): too few bytes (%d after header) for pnames.icu\n", 116 int32_t totalSize=udata_readInt32(ds, inIndexes[PropNameData::IX_TOTAL_SIZE]); 119 udata_printError(ds, "upname_swap(): too few bytes (%d after header, should be %d) " 127 udata_readInt32(ds, inIndexes[PropNameData::IX_BYTE_TRIES_OFFSET]); 130 ds->swapArray32(ds, inBytes, numBytesIndexesAndValueMaps, outBytes, pErrorCode); 158 uprops_swap(const UDataSwapper *ds, argument 306 ucase_swap(const UDataSwapper *ds, const void *inData, int32_t length, void *outData, UErrorCode *pErrorCode) argument 408 ubidi_swap(const UDataSwapper *ds, const void *inData, int32_t length, void *outData, UErrorCode *pErrorCode) argument 518 unorm_swap(const UDataSwapper *ds, const void *inData, int32_t length, void *outData, UErrorCode *pErrorCode) argument 642 test_swap(const UDataSwapper *ds, const void *inData, int32_t length, void *outData, UErrorCode *pErrorCode) argument 748 udata_swap(const UDataSwapper *ds, const void *inData, int32_t length, void *outData, UErrorCode *pErrorCode) argument [all...] |