/external/icu/icu4c/source/common/ |
D | ucol_swp.cpp | 34 utrie_swap(const UDataSwapper *ds, in utrie_swap() argument 45 if(ds==NULL || inData==NULL || (length>=0 && outData==NULL)) { in utrie_swap() 57 trie.signature=ds->readUInt32(inTrie->signature); in utrie_swap() 58 trie.options=ds->readUInt32(inTrie->options); in utrie_swap() 59 trie.indexLength=udata_readInt32(ds, inTrie->indexLength); in utrie_swap() 60 trie.dataLength=udata_readInt32(ds, inTrie->dataLength); in utrie_swap() 89 ds->swapArray32(ds, inTrie, sizeof(UTrieHeader), outTrie, pErrorCode); in utrie_swap() 93 ds->swapArray16(ds, inTrie+1, trie.indexLength*2, outTrie+1, pErrorCode); in utrie_swap() 94 ds->swapArray32(ds, (const uint16_t *)(inTrie+1)+trie.indexLength, trie.dataLength*4, in utrie_swap() 97 … ds->swapArray16(ds, inTrie+1, (trie.indexLength+trie.dataLength)*2, outTrie+1, pErrorCode); in utrie_swap() [all …]
|
D | rbbidata.cpp | 276 ubrk_swap(const UDataSwapper *ds, const void *inData, int32_t length, void *outData, in ubrk_swap() argument 282 if(ds==NULL || inData==NULL || length<-1 || (length>0 && outData==NULL)) { in ubrk_swap() 297 …udata_printError(ds, "ubrk_swap(): data format %02x.%02x.%02x.%02x (format version %02x) is not re… in ubrk_swap() 311 int32_t headerSize=udata_swapDataHeader(ds, inData, length, outData, status); in ubrk_swap() 324 if (ds->readUInt32(rbbiDH->fMagic) != 0xb1a0 || in ubrk_swap() 326 ds->readUInt32(rbbiDH->fLength) < sizeof(RBBIDataHeader)) in ubrk_swap() 328 udata_printError(ds, "ubrk_swap(): RBBI Data header is invalid.\n"); in ubrk_swap() 336 int32_t breakDataLength = ds->readUInt32(rbbiDH->fLength); in ubrk_swap() 346 … udata_printError(ds, "ubrk_swap(): too few bytes (%d after ICU Data header) for break data.\n", in ubrk_swap() 380 tableStartOffset = ds->readUInt32(rbbiDH->fFTable); in ubrk_swap() [all …]
|
D | udataswp.c | 31 uprv_swapArray16(const UDataSwapper *ds, in uprv_swapArray16() argument 42 if(ds==NULL || inData==NULL || length<0 || (length&1)!=0 || outData==NULL) { in uprv_swapArray16() 61 uprv_copyArray16(const UDataSwapper *ds, in uprv_copyArray16() argument 67 if(ds==NULL || inData==NULL || length<0 || (length&1)!=0 || outData==NULL) { in uprv_copyArray16() 79 uprv_swapArray32(const UDataSwapper *ds, in uprv_swapArray32() argument 90 if(ds==NULL || inData==NULL || length<0 || (length&3)!=0 || outData==NULL) { in uprv_swapArray32() 109 uprv_copyArray32(const UDataSwapper *ds, in uprv_copyArray32() argument 115 if(ds==NULL || inData==NULL || length<0 || (length&3)!=0 || outData==NULL) { in uprv_copyArray32() 127 uprv_swapArray64(const UDataSwapper *ds, in uprv_swapArray64() argument 137 if(ds==NULL || inData==NULL || length<0 || (length&7)!=0 || outData==NULL) { in uprv_swapArray64() [all …]
|
D | uresdata.c | 692 ures_swapResource(const UDataSwapper *ds, in ures_swapResource() argument 734 count=udata_readInt32(ds, (int32_t)*p); in ures_swapResource() 736 ds->swapArray32(ds, p, 4, q, pErrorCode); in ures_swapResource() 738 ds->swapArray16(ds, p+1, 2*count, q+1, pErrorCode); in ures_swapResource() 741 count=udata_readInt32(ds, (int32_t)*p); in ures_swapResource() 743 ds->swapArray32(ds, p, 4, q, pErrorCode); in ures_swapResource() 751 0==ds->compareInvChars(ds, key, -1, in ures_swapResource() 754 ucol_looksLikeCollationBinary(ds, p+1, count)) in ures_swapResource() 756 ucol_swap(ds, p+1, count, q+1, pErrorCode); in ures_swapResource() 776 count=ds->readUInt16(*pKey16); in ures_swapResource() [all …]
|
/external/chromium_org/third_party/icu/source/common/ |
D | ucol_swp.cpp | 33 utrie_swap(const UDataSwapper *ds, in utrie_swap() argument 44 if(ds==NULL || inData==NULL || (length>=0 && outData==NULL)) { in utrie_swap() 56 trie.signature=ds->readUInt32(inTrie->signature); in utrie_swap() 57 trie.options=ds->readUInt32(inTrie->options); in utrie_swap() 58 trie.indexLength=udata_readInt32(ds, inTrie->indexLength); in utrie_swap() 59 trie.dataLength=udata_readInt32(ds, inTrie->dataLength); in utrie_swap() 88 ds->swapArray32(ds, inTrie, sizeof(UTrieHeader), outTrie, pErrorCode); in utrie_swap() 92 ds->swapArray16(ds, inTrie+1, trie.indexLength*2, outTrie+1, pErrorCode); in utrie_swap() 93 ds->swapArray32(ds, (const uint16_t *)(inTrie+1)+trie.indexLength, trie.dataLength*4, in utrie_swap() 96 … ds->swapArray16(ds, inTrie+1, (trie.indexLength+trie.dataLength)*2, outTrie+1, pErrorCode); in utrie_swap() [all …]
|
D | rbbidata.cpp | 276 ubrk_swap(const UDataSwapper *ds, const void *inData, int32_t length, void *outData, in ubrk_swap() argument 282 if(ds==NULL || inData==NULL || length<-1 || (length>0 && outData==NULL)) { in ubrk_swap() 297 …udata_printError(ds, "ubrk_swap(): data format %02x.%02x.%02x.%02x (format version %02x) is not re… in ubrk_swap() 311 int32_t headerSize=udata_swapDataHeader(ds, inData, length, outData, status); in ubrk_swap() 324 if (ds->readUInt32(rbbiDH->fMagic) != 0xb1a0 || in ubrk_swap() 326 ds->readUInt32(rbbiDH->fLength) < sizeof(RBBIDataHeader)) in ubrk_swap() 328 udata_printError(ds, "ubrk_swap(): RBBI Data header is invalid.\n"); in ubrk_swap() 336 int32_t breakDataLength = ds->readUInt32(rbbiDH->fLength); in ubrk_swap() 346 … udata_printError(ds, "ubrk_swap(): too few bytes (%d after ICU Data header) for break data.\n", in ubrk_swap() 380 tableStartOffset = ds->readUInt32(rbbiDH->fFTable); in ubrk_swap() [all …]
|
D | udataswp.c | 31 uprv_swapArray16(const UDataSwapper *ds, in uprv_swapArray16() argument 42 if(ds==NULL || inData==NULL || length<0 || (length&1)!=0 || outData==NULL) { in uprv_swapArray16() 61 uprv_copyArray16(const UDataSwapper *ds, in uprv_copyArray16() argument 67 if(ds==NULL || inData==NULL || length<0 || (length&1)!=0 || outData==NULL) { in uprv_copyArray16() 79 uprv_swapArray32(const UDataSwapper *ds, in uprv_swapArray32() argument 90 if(ds==NULL || inData==NULL || length<0 || (length&3)!=0 || outData==NULL) { in uprv_swapArray32() 109 uprv_copyArray32(const UDataSwapper *ds, in uprv_copyArray32() argument 115 if(ds==NULL || inData==NULL || length<0 || (length&3)!=0 || outData==NULL) { in uprv_copyArray32() 167 udata_readInt16(const UDataSwapper *ds, int16_t x) { in udata_readInt16() argument 168 return (int16_t)ds->readUInt16((uint16_t)x); in udata_readInt16() [all …]
|
D | uresdata.c | 694 ures_swapResource(const UDataSwapper *ds, in ures_swapResource() argument 736 count=udata_readInt32(ds, (int32_t)*p); in ures_swapResource() 738 ds->swapArray32(ds, p, 4, q, pErrorCode); in ures_swapResource() 740 ds->swapArray16(ds, p+1, 2*count, q+1, pErrorCode); in ures_swapResource() 743 count=udata_readInt32(ds, (int32_t)*p); in ures_swapResource() 745 ds->swapArray32(ds, p, 4, q, pErrorCode); in ures_swapResource() 753 0==ds->compareInvChars(ds, key, -1, in ures_swapResource() 756 ucol_looksLikeCollationBinary(ds, p+1, count)) in ures_swapResource() 758 ucol_swapBinary(ds, p+1, count, q+1, pErrorCode); in ures_swapResource() 778 count=ds->readUInt16(*pKey16); in ures_swapResource() [all …]
|
/external/icu/icu4c/source/tools/toolutil/ |
D | swapimpl.cpp | 75 upname_swap(const UDataSwapper *ds, in upname_swap() argument 79 int32_t headerSize=udata_swapDataHeader(ds, inData, length, outData, pErrorCode); in upname_swap() 95 …udata_printError(ds, "upname_swap(): data format %02x.%02x.%02x.%02x (format version %02x) is not … in upname_swap() 110 udata_printError(ds, "upname_swap(): too few bytes (%d after header) for pnames.icu\n", in upname_swap() 118 int32_t totalSize=udata_readInt32(ds, inIndexes[PropNameData::IX_TOTAL_SIZE]); in upname_swap() 121 udata_printError(ds, "upname_swap(): too few bytes (%d after header, should be %d) " in upname_swap() 129 udata_readInt32(ds, inIndexes[PropNameData::IX_BYTE_TRIES_OFFSET]); in upname_swap() 132 ds->swapArray32(ds, inBytes, numBytesIndexesAndValueMaps, outBytes, pErrorCode); in upname_swap() 160 uprops_swap(const UDataSwapper *ds, in uprops_swap() argument 170 headerSize=udata_swapDataHeader(ds, inData, length, outData, pErrorCode); in uprops_swap() [all …]
|
/external/chromium_org/third_party/icu/source/tools/toolutil/ |
D | swapimpl.cpp | 75 upname_swap(const UDataSwapper *ds, in upname_swap() argument 79 int32_t headerSize=udata_swapDataHeader(ds, inData, length, outData, pErrorCode); in upname_swap() 95 …udata_printError(ds, "upname_swap(): data format %02x.%02x.%02x.%02x (format version %02x) is not … in upname_swap() 110 udata_printError(ds, "upname_swap(): too few bytes (%d after header) for pnames.icu\n", in upname_swap() 118 int32_t totalSize=udata_readInt32(ds, inIndexes[PropNameData::IX_TOTAL_SIZE]); in upname_swap() 121 udata_printError(ds, "upname_swap(): too few bytes (%d after header, should be %d) " in upname_swap() 129 udata_readInt32(ds, inIndexes[PropNameData::IX_BYTE_TRIES_OFFSET]); in upname_swap() 132 ds->swapArray32(ds, inBytes, numBytesIndexesAndValueMaps, outBytes, pErrorCode); in upname_swap() 160 uprops_swap(const UDataSwapper *ds, in uprops_swap() argument 170 headerSize=udata_swapDataHeader(ds, inData, length, outData, pErrorCode); in uprops_swap() [all …]
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
D | gen6_depthstencil.c | 36 struct gen6_depth_stencil_state *ds; in gen6_upload_depth_stencil_state() local 42 ds = brw_state_batch(brw, AUB_TRACE_DEPTH_STENCIL_STATE, in gen6_upload_depth_stencil_state() 43 sizeof(*ds), 64, in gen6_upload_depth_stencil_state() 45 memset(ds, 0, sizeof(*ds)); in gen6_upload_depth_stencil_state() 51 ds->ds0.stencil_enable = 1; in gen6_upload_depth_stencil_state() 52 ds->ds0.stencil_func = in gen6_upload_depth_stencil_state() 54 ds->ds0.stencil_fail_op = in gen6_upload_depth_stencil_state() 56 ds->ds0.stencil_pass_depth_fail_op = in gen6_upload_depth_stencil_state() 58 ds->ds0.stencil_pass_depth_pass_op = in gen6_upload_depth_stencil_state() 60 ds->ds1.stencil_write_mask = ctx->Stencil.WriteMask[0]; in gen6_upload_depth_stencil_state() [all …]
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | gen6_depthstencil.c | 36 struct gen6_depth_stencil_state *ds; in gen6_upload_depth_stencil_state() local 42 ds = brw_state_batch(brw, AUB_TRACE_DEPTH_STENCIL_STATE, in gen6_upload_depth_stencil_state() 43 sizeof(*ds), 64, in gen6_upload_depth_stencil_state() 45 memset(ds, 0, sizeof(*ds)); in gen6_upload_depth_stencil_state() 51 ds->ds0.stencil_enable = 1; in gen6_upload_depth_stencil_state() 52 ds->ds0.stencil_func = in gen6_upload_depth_stencil_state() 54 ds->ds0.stencil_fail_op = in gen6_upload_depth_stencil_state() 56 ds->ds0.stencil_pass_depth_fail_op = in gen6_upload_depth_stencil_state() 58 ds->ds0.stencil_pass_depth_pass_op = in gen6_upload_depth_stencil_state() 60 ds->ds1.stencil_write_mask = ctx->Stencil.WriteMask[0]; in gen6_upload_depth_stencil_state() [all …]
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/ |
D | svga_pipe_depthstencil.c | 76 struct svga_depth_stencil_state *ds = CALLOC_STRUCT( svga_depth_stencil_state ); in svga_create_depth_stencil_state() local 82 ds->stencil[0].enabled = templ->stencil[0].enabled; in svga_create_depth_stencil_state() 83 if (ds->stencil[0].enabled) { in svga_create_depth_stencil_state() 84 ds->stencil[0].func = svga_translate_compare_func(templ->stencil[0].func); in svga_create_depth_stencil_state() 85 ds->stencil[0].fail = svga_translate_stencil_op(templ->stencil[0].fail_op); in svga_create_depth_stencil_state() 86 ds->stencil[0].zfail = svga_translate_stencil_op(templ->stencil[0].zfail_op); in svga_create_depth_stencil_state() 87 ds->stencil[0].pass = svga_translate_stencil_op(templ->stencil[0].zpass_op); in svga_create_depth_stencil_state() 92 ds->stencil_mask = templ->stencil[0].valuemask & 0xff; in svga_create_depth_stencil_state() 93 ds->stencil_writemask = templ->stencil[0].writemask & 0xff; in svga_create_depth_stencil_state() 97 ds->stencil[1].enabled = templ->stencil[1].enabled; in svga_create_depth_stencil_state() [all …]
|
/external/mesa3d/src/gallium/drivers/svga/ |
D | svga_pipe_depthstencil.c | 76 struct svga_depth_stencil_state *ds = CALLOC_STRUCT( svga_depth_stencil_state ); in svga_create_depth_stencil_state() local 82 ds->stencil[0].enabled = templ->stencil[0].enabled; in svga_create_depth_stencil_state() 83 if (ds->stencil[0].enabled) { in svga_create_depth_stencil_state() 84 ds->stencil[0].func = svga_translate_compare_func(templ->stencil[0].func); in svga_create_depth_stencil_state() 85 ds->stencil[0].fail = svga_translate_stencil_op(templ->stencil[0].fail_op); in svga_create_depth_stencil_state() 86 ds->stencil[0].zfail = svga_translate_stencil_op(templ->stencil[0].zfail_op); in svga_create_depth_stencil_state() 87 ds->stencil[0].pass = svga_translate_stencil_op(templ->stencil[0].zpass_op); in svga_create_depth_stencil_state() 92 ds->stencil_mask = templ->stencil[0].valuemask & 0xff; in svga_create_depth_stencil_state() 93 ds->stencil_writemask = templ->stencil[0].writemask & 0xff; in svga_create_depth_stencil_state() 97 ds->stencil[1].enabled = templ->stencil[1].enabled; in svga_create_depth_stencil_state() [all …]
|
/external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/server/ |
D | peer_channel.cc | 88 bool ChannelMember::is_wait_request(DataSocket* ds) const { in is_wait_request() 89 return ds && ds->PathEquals(kRequestPaths[kWait]); in is_wait_request() 116 void ChannelMember::ForwardRequestToPeer(DataSocket* ds, ChannelMember* peer) { in ForwardRequestToPeer() argument 118 assert(ds); in ForwardRequestToPeer() 123 ds->Send("200 OK", true, ds->content_type(), extra_headers, in ForwardRequestToPeer() 124 ds->data()); in ForwardRequestToPeer() 128 peer->QueueResponse("200 OK", ds->content_type(), extra_headers, in ForwardRequestToPeer() 129 ds->data()); in ForwardRequestToPeer() 130 ds->Send("200 OK", true, "text/plain", "", ""); in ForwardRequestToPeer() 134 void ChannelMember::OnClosing(DataSocket* ds) { in OnClosing() argument [all …]
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_dirty_surfaces.h | 51 util_dirty_surfaces_init(struct util_dirty_surfaces *ds) in util_dirty_surfaces_init() argument 53 LIST_INITHEAD(&ds->dirty_list); in util_dirty_surfaces_init() 62 struct util_dirty_surface *ds = LIST_ENTRY(struct util_dirty_surface, p, dirty_list); in util_dirty_surfaces_use_for_sampling() local 65 flush(pipe, &ds->base); in util_dirty_surfaces_use_for_sampling() 77 struct util_dirty_surface *ds = LIST_ENTRY(struct util_dirty_surface, p, dirty_list); in util_dirty_surfaces_use_levels_for_sampling() local 80 if(ds->base.u.tex.level >= first && ds->base.u.tex.level <= last) in util_dirty_surfaces_use_levels_for_sampling() 81 flush(pipe, &ds->base); in util_dirty_surfaces_use_levels_for_sampling() 94 util_dirty_surface_init(struct util_dirty_surface *ds) in util_dirty_surface_init() argument 96 LIST_INITHEAD(&ds->dirty_list); in util_dirty_surface_init() 100 util_dirty_surface_is_dirty(struct util_dirty_surface *ds) in util_dirty_surface_is_dirty() argument [all …]
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
D | u_dirty_surfaces.h | 51 util_dirty_surfaces_init(struct util_dirty_surfaces *ds) in util_dirty_surfaces_init() argument 53 LIST_INITHEAD(&ds->dirty_list); in util_dirty_surfaces_init() 62 struct util_dirty_surface *ds = LIST_ENTRY(struct util_dirty_surface, p, dirty_list); in util_dirty_surfaces_use_for_sampling() local 65 flush(pipe, &ds->base); in util_dirty_surfaces_use_for_sampling() 77 struct util_dirty_surface *ds = LIST_ENTRY(struct util_dirty_surface, p, dirty_list); in util_dirty_surfaces_use_levels_for_sampling() local 80 if(ds->base.u.tex.level >= first && ds->base.u.tex.level <= last) in util_dirty_surfaces_use_levels_for_sampling() 81 flush(pipe, &ds->base); in util_dirty_surfaces_use_levels_for_sampling() 94 util_dirty_surface_init(struct util_dirty_surface *ds) in util_dirty_surface_init() argument 96 LIST_INITHEAD(&ds->dirty_list); in util_dirty_surface_init() 100 util_dirty_surface_is_dirty(struct util_dirty_surface *ds) in util_dirty_surface_is_dirty() argument [all …]
|
/external/qemu/include/ui/ |
D | console.h | 226 void vga_fill_rect (DisplayState *ds, int posx, int posy, 228 void register_displaystate(DisplayState *ds); 237 DisplayAllocator *register_displayallocator(DisplayState *ds, DisplayAllocator *da); 239 static inline DisplaySurface* qemu_create_displaysurface(DisplayState *ds, int width, int height) in qemu_create_displaysurface() argument 241 return ds->allocator->create_displaysurface(width, height); in qemu_create_displaysurface() 244 static inline DisplaySurface* qemu_resize_displaysurface(DisplayState *ds, int width, int height) in qemu_resize_displaysurface() argument 246 return ds->allocator->resize_displaysurface(ds->surface, width, height); in qemu_resize_displaysurface() 249 static inline void qemu_free_displaysurface(DisplayState *ds) in qemu_free_displaysurface() argument 251 ds->allocator->free_displaysurface(ds->surface); in qemu_free_displaysurface() 268 static inline void register_displaychangelistener(DisplayState *ds, DisplayChangeListener *dcl) in register_displaychangelistener() argument [all …]
|
/external/icu/icu4c/source/tools/icuswap/ |
D | icuswap.cpp | 74 const UDataSwapper *ds, 112 UDataSwapper *ds; in main() local 207 ds=udata_openSwapperForInputData(data, length, outIsBigEndian, outCharset, &errorCode); in main() 215 ds->printError=printError; in main() 216 ds->printErrorContext=stderr; in main() 234 length=udata_swapPackage(argv[1], argv[2], ds, data, length, data, &errorCode); in main() 235 udata_closeSwapper(ds); in main() 244 length=udata_swap(ds, data, length, data, &errorCode); in main() 245 udata_closeSwapper(ds); in main() 289 extractPackageName(const UDataSwapper *ds, const char *filename, in extractPackageName() argument [all …]
|
/external/chromium_org/third_party/icu/source/tools/icuswap/ |
D | icuswap.cpp | 74 const UDataSwapper *ds, 112 UDataSwapper *ds; in main() local 207 ds=udata_openSwapperForInputData(data, length, outIsBigEndian, outCharset, &errorCode); in main() 215 ds->printError=printError; in main() 216 ds->printErrorContext=stderr; in main() 234 length=udata_swapPackage(argv[1], argv[2], ds, data, length, data, &errorCode); in main() 235 udata_closeSwapper(ds); in main() 244 length=udata_swap(ds, data, length, data, &errorCode); in main() 245 udata_closeSwapper(ds); in main() 289 extractPackageName(const UDataSwapper *ds, const char *filename, in extractPackageName() argument [all …]
|
/external/qemu/android/ |
D | display.c | 56 android_display_update(DisplayState *ds, int x, int y, int w, int h) in android_display_update() argument 58 QFrameBuffer* qfbuff = ds->opaque; in android_display_update() 63 android_display_resize(DisplayState *ds) in android_display_resize() argument 65 QFrameBuffer* qfbuff = ds->opaque; in android_display_resize() 70 android_display_refresh(DisplayState *ds) in android_display_refresh() argument 72 QFrameBuffer* qfbuff = ds->opaque; in android_display_refresh() 77 void android_display_init(DisplayState* ds, QFrameBuffer* qf) in android_display_init() argument 81 qframebuffer_set_producer(qf, ds, in android_display_init() 87 qemu_free_displaysurface(ds); in android_display_init() 88 ds->opaque = qf; in android_display_init() [all …]
|
/external/valgrind/main/coregrind/m_demangle/ |
D | dyn-string.c | 121 dyn_string_delete (dyn_string_t ds) in dyn_string_delete() argument 123 free (ds->s); in dyn_string_delete() 124 free (ds); in dyn_string_delete() 132 dyn_string_release (dyn_string_t ds) in dyn_string_release() argument 135 char* result = ds->s; in dyn_string_release() 137 ds->s = NULL; in dyn_string_release() 139 free (ds); in dyn_string_release() 152 dyn_string_resize (dyn_string_t ds, int space) in dyn_string_resize() argument 154 int new_allocated = ds->allocated; in dyn_string_resize() 163 if (new_allocated != ds->allocated) in dyn_string_resize() [all …]
|
/external/e2fsprogs/contrib/ |
D | spd_readdir.c | 205 struct dirent_s *ds, *dnew; in cache_dirstruct() local 219 ds = &dirstruct->dp[dirstruct->num++]; in cache_dirstruct() 220 ds->d_ino = d->d_ino; in cache_dirstruct() 221 ds->d_off = d->d_off; in cache_dirstruct() 222 ds->d_reclen = d->d_reclen; in cache_dirstruct() 223 ds->d_type = d->d_type; in cache_dirstruct() 224 if ((ds->d_name = malloc(strlen(d->d_name)+1)) == NULL) { in cache_dirstruct() 228 strcpy(ds->d_name, d->d_name); in cache_dirstruct() 323 struct dirent_s *ds; in readdir() local 331 ds = &dirstruct->dp[dirstruct->pos++]; in readdir() [all …]
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/ |
D | segmov.asm | 1 mov [0], ds 2 mov word [0], ds 3 mov ax, ds 4 mov eax, ds 5 mov ds, ax 6 mov ds, eax 7 mov ds, [0] 8 mov ds, word [0] 9 mov word ds, [0]
|
/external/libexif/libexif/ |
D | exif-data.c | 230 unsigned char **d, unsigned int *ds, in exif_data_save_data_entry() argument 255 exif_mnote_data_set_offset (data->priv->md, *ds - 6); in exif_data_save_data_entry() 271 doff = *ds - 6; in exif_data_save_data_entry() 272 ts = *ds + s; in exif_data_save_data_entry() 287 *ds = ts; in exif_data_save_data_entry() 290 *(*d + *ds - 1) = '\0'; in exif_data_save_data_entry() 308 unsigned int ds, ExifLong o, ExifLong s) in exif_data_load_data_thumbnail() argument 311 if ((o + s < o) || (o + s < s) || (o + s > ds) || (o > ds)) { in exif_data_load_data_thumbnail() 360 unsigned int ds, unsigned int offset, unsigned int recursion_depth) in exif_data_load_data_content() argument 382 if ((offset + 2 < offset) || (offset + 2 < 2) || (offset + 2 > ds)) { in exif_data_load_data_content() [all …]
|