Searched refs:ds (Results 1 - 25 of 123) sorted by relevance

12345

/external/icu4c/common/
H A Ducol_swp.c33 utrie_swap(const UDataSwapper *ds, argument
44 if(ds==NULL || inData==NULL || (length>=0 && outData==NULL)) {
56 trie.signature=ds->readUInt32(inTrie->signature);
57 trie.options=ds->readUInt32(inTrie->options);
58 trie.indexLength=udata_readInt32(ds, inTrie->indexLength);
59 trie.dataLength=udata_readInt32(ds, inTrie->dataLength);
88 ds->swapArray32(ds, inTrie, sizeof(UTrieHeader), outTrie, pErrorCode);
92 ds->swapArray16(ds, inTri
107 ucol_swapBinary(const UDataSwapper *ds, const void *inData, int32_t length, void *outData, UErrorCode *pErrorCode) argument
268 ucol_swap(const UDataSwapper *ds, const void *inData, int32_t length, void *outData, UErrorCode *pErrorCode) argument
312 ucol_swapInverseUCA(const UDataSwapper *ds, const void *inData, int32_t length, void *outData, UErrorCode *pErrorCode) argument
[all...]
H A Drbbidata.cpp275 ubrk_swap(const UDataSwapper *ds, const void *inData, int32_t length, void *outData, argument
281 if(ds==NULL || inData==NULL || length<-1 || (length>0 && outData==NULL)) {
296 udata_printError(ds, "ubrk_swap(): data format %02x.%02x.%02x.%02x (format version %02x) is not recognized\n",
310 int32_t headerSize=udata_swapDataHeader(ds, inData, length, outData, status);
323 UBool formatVersionOne = ds->readUInt32(*(int32_t *)rbbiDH->fFormatVersion) == 1;
324 if (ds->readUInt32(rbbiDH->fMagic) != 0xb1a0 ||
326 ds->readUInt32(rbbiDH->fLength) < sizeof(RBBIDataHeader))
328 udata_printError(ds, "ubrk_swap(): RBBI Data header is invalid.\n");
336 int32_t breakDataLength = ds->readUInt32(rbbiDH->fLength);
346 udata_printError(ds, "ubrk_swa
[all...]
H A Ducol_swp.h34 ucol_swapBinary(const UDataSwapper *ds,
43 ucol_swap(const UDataSwapper *ds,
52 ucol_swapInverseUCA(const UDataSwapper *ds,
H A Dpropname.cpp333 EnumToOffset::swap(const UDataSwapper *ds, argument
351 tempMap->enumStart=udata_readInt32(ds, inMap->enumStart);
352 tempMap->enumLimit=udata_readInt32(ds, inMap->enumLimit);
358 udata_printError(ds, "upname_swap(EnumToOffset): too few bytes (%d after header)\n"
367 ds->swapArray32(ds, inMap, 2*sizeof(EnumValue), outMap, pErrorCode);
370 ds->swapArray16(ds, inMap->getOffsetArray(), (tempMap->enumLimit-tempMap->enumStart)*sizeof(Offset),
378 NonContiguousEnumToOffset::swap(const UDataSwapper *ds, argument
396 tempMap->count=udata_readInt32(ds, inMa
445 swap(const UDataSwapper *ds, const uint8_t *inBytes, int32_t length, uint8_t *outBytes, uint8_t *temp, int32_t pos, UErrorCode *pErrorCode) argument
590 swap(const UDataSwapper *ds, const uint8_t *inBytes, int32_t length, uint8_t *outBytes, UErrorCode *pErrorCode) argument
710 upname_swap(const UDataSwapper *ds, const void *inData, int32_t length, void *outData, UErrorCode *pErrorCode) argument
[all...]
H A Dudataswp.h67 * @param ds Pointer to UDataSwapper containing global data about the
88 UDataSwapFn(const UDataSwapper *ds,
131 UDataCompareInvChars(const UDataSwapper *ds,
216 udata_closeSwapper(UDataSwapper *ds);
228 udata_swapDataHeader(const UDataSwapper *ds,
237 udata_readInt16(const UDataSwapper *ds, int16_t x);
244 udata_readInt32(const UDataSwapper *ds, int32_t x);
252 udata_swapInvStringBlock(const UDataSwapper *ds,
257 udata_printError(const UDataSwapper *ds,
270 uprv_ebcdicFromAscii(const UDataSwapper *ds,
[all...]
H A Duresdata.c567 ures_preflightResource(const UDataSwapper *ds, argument
583 udata_printError(ds, "ures_preflightResource(res=%08x) resource offset exceeds bundle length %d\n",
597 offset+=1+((udata_readInt32(ds, (int32_t)*p)+1)+1)/2;
601 offset+=1+(udata_readInt32(ds, (int32_t)*p)+3)/4;
612 count=ds->readUInt16(*pKey16++);
619 count=udata_readInt32(ds, *pKey32++);
635 item=ds->readUInt32(*p++);
636 ures_preflightResource(ds, inBundle, length, item,
640 udata_printError(ds, "ures_preflightResource(table res=%08x)[%d].recurse(%08x) failed\n",
654 count=udata_readInt32(ds, (int32_
700 ures_swapResource(const UDataSwapper *ds, const Resource *inBundle, Resource *outBundle, Resource res, UResSpecialType specialType, TempTable *pTempTable, UErrorCode *pErrorCode) argument
957 ures_swap(const UDataSwapper *ds, const void *inData, int32_t length, void *outData, UErrorCode *pErrorCode) argument
[all...]
H A Dudataswp.c31 uprv_swapArray16(const UDataSwapper *ds, argument
42 if(ds==NULL || inData==NULL || length<0 || (length&1)!=0 || outData==NULL) {
61 uprv_copyArray16(const UDataSwapper *ds, argument
67 if(ds==NULL || inData==NULL || length<0 || (length&1)!=0 || outData==NULL) {
79 uprv_swapArray32(const UDataSwapper *ds, argument
90 if(ds==NULL || inData==NULL || length<0 || (length&3)!=0 || outData==NULL) {
109 uprv_copyArray32(const UDataSwapper *ds, argument
115 if(ds==NULL || inData==NULL || length<0 || (length&3)!=0 || outData==NULL) {
167 udata_readInt16(const UDataSwapper *ds, int16_t x) { argument
168 return (int16_t)ds
172 udata_readInt32(const UDataSwapper *ds, int32_t x) argument
182 udata_swapInvStringBlock(const UDataSwapper *ds, const void *inData, int32_t length, void *outData, UErrorCode *pErrorCode) argument
220 udata_printError(const UDataSwapper *ds, const char *fmt, ...) argument
235 udata_swapDataHeader(const UDataSwapper *ds, const void *inData, int32_t length, void *outData, UErrorCode *pErrorCode) argument
413 udata_closeSwapper(UDataSwapper *ds) argument
[all...]
/external/quake/quake/src/QW/client/
H A Dr_edgea.asm247 mov edx,ds:dword ptr[4+8+esp]
249 mov ecx,ds:dword ptr[8+12+esp]
251 mov eax,ds:dword ptr[0+edx]
254 mov ebx,ds:dword ptr[0+ecx]
255 mov esi,ds:dword ptr[12+ecx]
258 mov ebx,ds:dword ptr[0+esi]
259 mov ecx,ds:dword ptr[12+esi]
262 mov ebx,ds:dword ptr[0+ecx]
263 mov esi,ds:dword ptr[12+ecx]
266 mov ebx,ds
[all...]
H A Dr_drawa.asm252 mov ds:dword ptr[Lstack],esp
253 mov ebx,ds:dword ptr[12+12+esp]
254 mov esi,ds:dword ptr[4+12+esp]
255 mov edx,ds:dword ptr[8+12+esp]
259 fld ds:dword ptr[0+0+esi]
260 fmul ds:dword ptr[0+0+ebx]
261 fld ds:dword ptr[0+4+esi]
262 fmul ds:dword ptr[0+4+ebx]
263 fld ds:dword ptr[0+8+esi]
264 fmul ds
[all...]
H A Dd_polysa.asm250 fild ds:dword ptr[_r_p0+0]
251 fild ds:dword ptr[_r_p2+0]
252 fild ds:dword ptr[_r_p0+4]
253 fild ds:dword ptr[_r_p2+4]
254 fild ds:dword ptr[_r_p1+0]
255 fild ds:dword ptr[_r_p1+4]
265 fld ds:dword ptr[_d_xdenom]
267 fstp ds:dword ptr[p10_minus_p20]
268 fstp ds:dword ptr[p01_minus_p21]
270 fild ds
[all...]
H A Dd_draw16.asm238 mov esi,ds:dword ptr[_bbextents]
245 mov edx,ds:dword ptr[_bbextentt]
255 mov ebp,ds:dword ptr[_bbextents]
261 mov ecx,ds:dword ptr[_bbextentt]
267 mov eax,ds:dword ptr[_bbextents]
273 mov ebx,ds:dword ptr[_bbextentt]
282 fld ds:dword ptr[_d_sdivzstepu]
283 fmul ds:dword ptr[fp_16]
284 mov edx,ds:dword ptr[_cacheblock]
285 fld ds
[all...]
H A Dsurf8.asm248 mov ebx,ds:dword ptr[_r_lightptr]
249 mov eax,ds:dword ptr[_r_numvblocks]
250 mov ds:dword ptr[sb_v],eax
251 mov edi,ds:dword ptr[_prowdestbase]
252 mov esi,ds:dword ptr[_pbasesource]
254 mov eax,ds:dword ptr[ebx]
255 mov edx,ds:dword ptr[4+ebx]
257 mov ecx,ds:dword ptr[_r_lightwidth]
258 mov ds:dword ptr[_lightright],edx
261 lea ebx,ds
[all...]
H A Dd_spr8.asm236 mov esi,ds:dword ptr[_bbextents]
243 mov edx,ds:dword ptr[_bbextentt]
253 mov ebp,ds:dword ptr[_bbextents]
259 mov ecx,ds:dword ptr[_bbextentt]
265 mov eax,ds:dword ptr[_bbextents]
271 mov ebx,ds:dword ptr[_bbextentt]
280 fld ds:dword ptr[_d_sdivzstepu]
281 fmul ds:dword ptr[fp_8]
282 mov edx,ds:dword ptr[_cacheblock]
283 fld ds
[all...]
H A Dd_draw.asm236 mov esi,ds:dword ptr[_bbextents]
243 mov edx,ds:dword ptr[_bbextentt]
253 mov ebp,ds:dword ptr[_bbextents]
259 mov ecx,ds:dword ptr[_bbextentt]
265 mov eax,ds:dword ptr[_bbextents]
271 mov ebx,ds:dword ptr[_bbextentt]
280 fld ds:dword ptr[_d_sdivzstepu]
281 fmul ds:dword ptr[fp_8]
282 mov edx,ds:dword ptr[_cacheblock]
283 fld ds
[all...]
H A Dd_parta.asm241 mov edi,ds:dword ptr[12+4+esp]
242 fld ds:dword ptr[_r_origin]
243 fsubr ds:dword ptr[0+edi]
244 fld ds:dword ptr[0+4+edi]
245 fsub ds:dword ptr[_r_origin+4]
246 fld ds:dword ptr[0+8+edi]
247 fsub ds:dword ptr[_r_origin+8]
249 fld ds:dword ptr[_r_ppn]
251 fld ds:dword ptr[_r_ppn+4]
253 fld ds
[all...]
H A Dmath.asm242 mov ecx,ds:dword ptr[4+esp]
255 mov eax,ds:dword ptr[4+esp]
256 mov edx,ds:dword ptr[8+esp]
257 fld ds:dword ptr[eax]
258 fmul ds:dword ptr[_vright]
259 fld ds:dword ptr[eax]
260 fmul ds:dword ptr[_vup]
261 fld ds:dword ptr[eax]
262 fmul ds:dword ptr[_vpn]
263 fld ds
[all...]
H A Dsurf16.asm255 mov eax,ds:dword ptr[_blocksize]
256 mov edi,ds:dword ptr[_prowdestbase]
257 mov esi,ds:dword ptr[_pbasesource]
258 mov ebx,ds:dword ptr[_sourcesstep]
259 mov ecx,ds:dword ptr[blockjumptable16-4+eax*2]
260 mov ds:dword ptr[k],eax
261 mov ds:dword ptr[loopentry],ecx
262 mov edx,ds:dword ptr[_lightleft]
263 mov ebp,ds:dword ptr[_lightright]
266 mov cl,ds
[all...]
H A Dr_aliasa.asm245 mov esi,ds:dword ptr[_r_apverts]
246 mov ebp,ds:dword ptr[12+8+esp]
247 mov edi,ds:dword ptr[12+4+esp]
248 mov ecx,ds:dword ptr[_r_anumverts]
251 mov dl,ds:byte ptr[esi]
252 mov ds:byte ptr[Lcoords],dl
253 fild ds:dword ptr[Lcoords]
254 mov dl,ds:byte ptr[1+esi]
255 mov ds:byte ptr[Lcoords+4],dl
256 fild ds
[all...]
/external/icu4c/tools/toolutil/
H A Dswapimpl.h39 udata_swap(const UDataSwapper *ds,
H A Dswapimpl.cpp72 uprops_swap(const UDataSwapper *ds, argument
82 headerSize=udata_swapDataHeader(ds, inData, length, outData, pErrorCode);
98 udata_printError(ds, "uprops_swap(): data format %02x.%02x.%02x.%02x (format version %02x) is not a Unicode properties file\n",
108 udata_printError(ds, "uprops_swap(): too few bytes (%d after header) for a Unicode properties file\n",
117 dataIndexes[i]=udata_readInt32(ds, inData32[i]);
128 udata_printError(ds, "uprops_swap(): too few bytes (%d after header) for a Unicode properties file\n",
142 ds->swapArray32(ds, inData32, 4*UPROPS_INDEX_COUNT, outData32, pErrorCode);
148 utrie_swap(ds,
159 ds
203 ucase_swap(const UDataSwapper *ds, const void *inData, int32_t length, void *outData, UErrorCode *pErrorCode) argument
304 ubidi_swap(const UDataSwapper *ds, const void *inData, int32_t length, void *outData, UErrorCode *pErrorCode) argument
411 unorm_swap(const UDataSwapper *ds, const void *inData, int32_t length, void *outData, UErrorCode *pErrorCode) argument
535 test_swap(const UDataSwapper *ds, const void *inData, int32_t length, void *outData, UErrorCode *pErrorCode) argument
642 udata_swap(const UDataSwapper *ds, const void *inData, int32_t length, void *outData, UErrorCode *pErrorCode) argument
[all...]
H A Dpkgitems.cpp152 ures_enumDependencies(const UDataSwapper *ds, argument
170 udata_printError(ds, "icupkg/ures_enumDependencies(%s res=%08x) resource offset exceeds bundle length %d\n",
189 ds->swapInvChars(ds, inKey, gAliasKeyLength+1, key, pErrorCode);
191 udata_printError(ds, "icupkg/ures_enumDependencies(%s res=%08x) string key contains variant characters\n",
208 ds->swapInvChars(ds, parentKey, gDependencyKeyLength+1, key, pErrorCode);
210 udata_printError(ds, "icupkg/ures_enumDependencies(%s res=%08x) string key contains variant characters\n",
230 stringLength=udata_readInt32(ds, (int32_t)*p);
241 if(U_IS_BIG_ENDIAN==ds
420 ures_enumDependencies(const UDataSwapper *ds, const char *itemName, const UDataInfo *pInfo, const uint8_t *inBytes, int32_t length, CheckDependency check, void *context, UErrorCode *pErrorCode) argument
483 ucnv_enumDependencies(const UDataSwapper *ds, const char *itemName, const UDataInfo *pInfo, const uint8_t *inBytes, int32_t length, CheckDependency check, void *context, UErrorCode *pErrorCode) argument
633 UDataSwapper *ds; local
[all...]
/external/qemu/
H A Dconsole.h145 void register_displaystate(DisplayState *ds);
153 DisplayAllocator *register_displayallocator(DisplayState *ds, DisplayAllocator *da);
158 static inline DisplaySurface* qemu_create_displaysurface(DisplayState *ds, int width, int height) argument
160 return ds->allocator->create_displaysurface(width, height);
163 static inline DisplaySurface* qemu_resize_displaysurface(DisplayState *ds, int width, int height) argument
165 return ds->allocator->resize_displaysurface(ds->surface, width, height);
168 static inline void qemu_free_displaysurface(DisplayState *ds) argument
170 ds->allocator->free_displaysurface(ds
186 register_displaychangelistener(DisplayState *ds, DisplayChangeListener *dcl) argument
257 ds_get_linesize(DisplayState *ds) argument
262 ds_get_data(DisplayState *ds) argument
267 ds_get_width(DisplayState *ds) argument
272 ds_get_height(DisplayState *ds) argument
277 ds_get_bits_per_pixel(DisplayState *ds) argument
282 ds_get_bytes_per_pixel(DisplayState *ds) argument
[all...]
H A Dcurses.c48 static void curses_update(DisplayState *ds, int x, int y, int w, int h) argument
99 static void curses_resize(DisplayState *ds) argument
101 if (ds_get_width(ds) == gwidth && ds_get_height(ds) == gheight)
104 gwidth = ds_get_width(ds);
105 gheight = ds_get_height(ds);
108 ds->surface->width = width * FONT_WIDTH;
109 ds->surface->height = height * FONT_HEIGHT;
137 static void curses_cursor_position(DisplayState *ds, int x, int y) argument
164 static void curses_refresh(DisplayState *ds) argument
339 curses_display_init(DisplayState *ds, int full_screen) argument
[all...]
/external/openssl/ssl/
H A Dd1_enc.c132 EVP_CIPHER_CTX *ds; local
141 ds=s->enc_write_ctx;
152 else if ( EVP_CIPHER_block_size(ds->cipher) > 1)
154 if (RAND_bytes(rec->input, EVP_CIPHER_block_size(ds->cipher)) <= 0)
163 ds=s->enc_read_ctx;
175 if ((s->session == NULL) || (ds == NULL) ||
184 bs=EVP_CIPHER_block_size(ds->cipher);
208 printf("EVP_Cipher(ds=%p,rec->data=%p,rec->input=%p,l=%ld) ==>\n",
209 (void *)ds,rec->data,rec->input,l);
211 ds
[all...]
/external/icu4c/tools/icuswap/
H A Dicuswap.cpp74 const UDataSwapper *ds,
112 UDataSwapper *ds; local
207 ds=udata_openSwapperForInputData(data, length, outIsBigEndian, outCharset, &errorCode);
215 ds->printError=printError;
216 ds->printErrorContext=stderr;
234 length=udata_swapPackage(argv[1], argv[2], ds, data, length, data, &errorCode);
235 udata_closeSwapper(ds);
244 length=udata_swap(ds, data, length, data, &errorCode);
245 udata_closeSwapper(ds);
289 extractPackageName(const UDataSwapper *ds, cons argument
335 udata_swapPackage(const char *inFilename, const char *outFilename, const UDataSwapper *ds, const void *inData, int32_t length, void *outData, UErrorCode *pErrorCode) argument
[all...]

Completed in 303 milliseconds

12345