HomeSort by relevance Sort by last modified time
    Searched refs:ds (Results 1 - 25 of 631) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
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/qemu/android/
display-core.h 27 * ds - Display state to use for the core display.
29 extern void coredisplay_init(DisplayState* ds);
display-core.c 26 coredisplay_refresh(DisplayState* ds)
28 (void)ds;
40 coredisplay_update(DisplayState* ds, int x, int y, int w, int h)
42 (void)ds;
54 coredisplay_resize(DisplayState* ds)
56 (void)ds;
60 coredisplay_init(DisplayState* ds)
67 register_displaychangelistener(ds, dcl);
display.h 18 extern void android_display_init(DisplayState* ds, QFrameBuffer* qfbuff);
display.c 56 android_display_update(DisplayState *ds, int x, int y, int w, int h)
58 QFrameBuffer* qfbuff = ds->opaque;
63 android_display_resize(DisplayState *ds)
65 QFrameBuffer* qfbuff = ds->opaque;
70 android_display_refresh(DisplayState *ds)
72 QFrameBuffer* qfbuff = ds->opaque;
77 void android_display_init(DisplayState* ds, QFrameBuffer* qf)
81 qframebuffer_set_producer(qf, ds,
87 qemu_free_displaysurface(ds);
88 ds->opaque = qf
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
DatagramSocketTest.java 27 DatagramSocket ds = new DatagramSocket(); local
29 assertTrue(ds.isBound());
30 assertTrue(ds.getBroadcast()); // The RI starts DatagramSocket in broadcast mode.
31 assertFalse(ds.isClosed());
32 assertFalse(ds.isConnected());
33 assertTrue(ds.getLocalPort() > 0);
34 assertTrue(ds.getLocalAddress().isAnyLocalAddress());
35 InetSocketAddress socketAddress = (InetSocketAddress) ds.getLocalSocketAddress();
36 assertEquals(ds.getLocalPort(), socketAddress.getPort());
37 assertEquals(ds.getLocalAddress(), socketAddress.getAddress())
49 DatagramSocket ds = new DatagramSocket(); local
    [all...]
  /frameworks/base/core/java/android/text/style/
ClickableSpan.java 39 public void updateDrawState(TextPaint ds) {
40 ds.setColor(ds.linkColor);
41 ds.setUnderlineText(true);
RelativeSizeSpan.java 53 public void updateDrawState(TextPaint ds) {
54 ds.setTextSize(ds.getTextSize() * mProportion);
58 public void updateMeasureState(TextPaint ds) {
59 ds.setTextSize(ds.getTextSize() * mProportion);
  /external/chromium_org/content/renderer/
internal_document_state_data.cc 32 blink::WebDataSource* ds) {
33 return FromDocumentState(static_cast<DocumentState*>(ds->extraData()));
38 DocumentState* ds) {
39 if (!ds)
42 ds->GetUserData(&kUserDataKey));
45 ds->SetUserData(&kUserDataKey, data);
  /external/chromium_org/third_party/icu/source/common/
ucol_swp.cpp 33 utrie_swap(const UDataSwapper *ds,
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, inTrie+1, trie.indexLength*2, outTrie+1, pErrorCode)
    [all...]
rbbidata.cpp 276 ubrk_swap(const UDataSwapper *ds, const void *inData, int32_t length, void *outData,
282 if(ds==NULL || inData==NULL || length<-1 || (length>0 && outData==NULL)) {
297 udata_printError(ds, "ubrk_swap(): data format %02x.%02x.%02x.%02x (format version %02x) is not recognized\n",
311 int32_t headerSize=udata_swapDataHeader(ds, inData, length, outData, status);
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_swap(): too few bytes (%d after ICU Data header) for break data.\n",
380 tableStartOffset = ds->readUInt32(rbbiDH->fFTable)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
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->ds0.stencil_pass_depth_pass_op
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
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->ds0.stencil_pass_depth_pass_op
    [all...]
  /external/smali/util/src/main/java/ds/tree/
DuplicateKeyException.java 25 package ds.tree;
  /external/icu/icu4c/source/common/
ucol_swp.cpp 34 utrie_swap(const UDataSwapper *ds,
45 if(ds==NULL || inData==NULL || (length>=0 && outData==NULL)) {
57 trie.signature=ds->readUInt32(inTrie->signature);
58 trie.options=ds->readUInt32(inTrie->options);
59 trie.indexLength=udata_readInt32(ds, inTrie->indexLength);
60 trie.dataLength=udata_readInt32(ds, inTrie->dataLength);
89 ds->swapArray32(ds, inTrie, sizeof(UTrieHeader), outTrie, pErrorCode);
93 ds->swapArray16(ds, inTrie+1, trie.indexLength*2, outTrie+1, pErrorCode)
    [all...]
rbbidata.cpp 276 ubrk_swap(const UDataSwapper *ds, const void *inData, int32_t length, void *outData,
282 if(ds==NULL || inData==NULL || length<-1 || (length>0 && outData==NULL)) {
297 udata_printError(ds, "ubrk_swap(): data format %02x.%02x.%02x.%02x (format version %02x) is not recognized\n",
311 int32_t headerSize=udata_swapDataHeader(ds, inData, length, outData, status);
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_swap(): too few bytes (%d after ICU Data header) for break data.\n",
380 tableStartOffset = ds->readUInt32(rbbiDH->fFTable)
    [all...]
  /hardware/invensense/60xx/libsensors_iio/software/core/mllite/
storage_manager.c 46 static struct data_storage_t ds; variable in typeref:struct:data_storage_t
52 memset(&ds, 0, sizeof(ds));
53 ds.total_size = sizeof(struct data_header_t);
71 for (kk=0; kk<ds.num; ++kk) {
72 if (key == ds.hd[kk].key) {
77 if (ds.num >= NUM_STORAGE_BOXES) {
81 ds.hd[ds.num].key = key;
82 ds.hd[ds.num].size = size
    [all...]
  /hardware/invensense/6515/libsensors_iio/software/core/mllite/
storage_manager.c 50 static struct data_storage_t ds; variable in typeref:struct:data_storage_t
56 memset(&ds, 0, sizeof(ds));
57 ds.total_size = sizeof(struct data_header_t);
75 for (kk=0; kk<ds.num; ++kk) {
76 if (key == ds.hd[kk].key) {
81 if (ds.num >= NUM_STORAGE_BOXES) {
85 ds.hd[ds.num].key = key;
86 ds.hd[ds.num].size = size
    [all...]
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/
storage_manager.c 50 static struct data_storage_t ds; variable in typeref:struct:data_storage_t
56 memset(&ds, 0, sizeof(ds));
57 ds.total_size = sizeof(struct data_header_t);
75 for (kk=0; kk<ds.num; ++kk) {
76 if (key == ds.hd[kk].key) {
81 if (ds.num >= NUM_STORAGE_BOXES) {
85 ds.hd[ds.num].key = key;
86 ds.hd[ds.num].size = size
    [all...]
  /external/valgrind/main/memcheck/tests/linux/
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)
  /frameworks/base/core/java/android/text/method/
Touch.java 90 DragState[] ds; local
94 ds = buffer.getSpans(0, buffer.length(), DragState.class);
96 for (int i = 0; i < ds.length; i++) {
97 buffer.removeSpan(ds[i]);
106 ds = buffer.getSpans(0, buffer.length(), DragState.class);
108 for (int i = 0; i < ds.length; i++) {
109 buffer.removeSpan(ds[i]);
112 if (ds.length > 0 && ds[0].mUsed) {
119 ds = buffer.getSpans(0, buffer.length(), DragState.class)
197 DragState[] ds = buffer.getSpans(0, buffer.length(), DragState.class); local
206 DragState[] ds = buffer.getSpans(0, buffer.length(), DragState.class); local
219 DragState[] ds; local
235 DragState[] ds; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_dirty_surfaces.h 51 util_dirty_surfaces_init(struct util_dirty_surfaces *ds)
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)
96 LIST_INITHEAD(&ds->dirty_list)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_dirty_surfaces.h 51 util_dirty_surfaces_init(struct util_dirty_surfaces *ds)
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)
96 LIST_INITHEAD(&ds->dirty_list)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
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->stencil[1].enabled = templ->stencil[1].enabled
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
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->stencil[1].enabled = templ->stencil[1].enabled
    [all...]

Completed in 446 milliseconds

1 2 3 4 5 6 7 8 91011>>