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

1 2 3 4 5 6 7 8 91011>>

  /external/flatbuffers/tests/FlatBuffers.Test/
NetTest.sh 6 ../../net/FlatBuffers/*.cs ../MyGame/Example/*.cs ../MyGame/*.cs ../union_vector/*.cs \
7 FlatBuffersTestClassAttribute.cs FlatBuffersTestMethodAttribute.cs Assert.cs FlatBuffersExampleTests.cs Program.cs ByteBufferTests.cs FlatBufferBuilderTests.cs FlatBuffersFuzzTests.cs FuzzTestData.cs Lcg.cs TestTable.c
    [all...]
  /external/doclava/res/assets/templates/
lists.cs 2 <?cs each:page = docs.pages
3 ?> { id:<?cs var: page.id ?>, label:"<?cs var:page.label ?>", link:"<?cs var:page.link ?>", type:"<?cs var:page.type ?>", deprecated:"<?cs var:page.deprecated ?>" }<?cs if:!last(page) ?>,<?cs /if ?>
4 <?cs /each ?>
jd_lists.cs 2 <?cs
5 { label:"<?cs var:page.label ?>", link:"<?cs var:page.link ?>",
6 tags:[<?cs var:page.tags ?>], type:"<?cs var:page.type ?>" }<?cs if:!last(page) ?>,<?cs /if ?><?cs
navtree_data.cs 2 <?cs var:reference_tree ?>
macros.cs 1 <?cs
3 ?><?cs
4 if:dac ?><?cs
5 # standard devsite warns on inline js and script tags ?><?cs
6 set:enable_javascript = 1 ?><?cs
9 <?cs # A link to a package ?><?cs
11 <a href="<?cs
12 if:!pkg.federatedSite ?><?cs
13 var:toroot ?><?cs
    [all...]
hierarchy.cs 1 <?cs include:"macros.cs" ?>
2 <html<?cs if:devsite ?> devsite<?cs /if ?>>
12 <?cs include:"head_tag.cs" ?>
13 <?cs include:"header.cs" ?>
18 <h1><?cs var:page.title ?></h1>
23 <div<?cs if:!devsite ?> style="margin-left: 20px; margin-right: 20px;"<?cs /if ?>
    [all...]
timestamp.cs 1 var BUILD_TIMESTAMP = "<?cs var:page.now ?>";
  /external/doclava/res/assets/templates-sdk/
page_info.cs 1 <?cs # optional, more info about the page, such as API level and links ?>
2 <?cs
5 <?cs
9 ?><?cs
14 <?cs call:since_tags(package) ?>
15 <?cs call:federated_refs(package) ?>
17 </div><?cs
21 ?><?cs
26 <?cs call:since_tags(class) ?>
27 <?cs if:class.artifact ?
    [all...]
lists.cs 1 var <?cs
2 if:dac_dataname ?><?cs var:dac_dataname ?><?cs
3 else ?>DATA<?cs
5 <?cs each:page = docs.pages
6 ?> { id:<?cs var: page.id ?>, label:"<?cs var:page.label ?>", link:"<?cs var:page.link ?>", type:"<?cs var:page.type ?>", deprecated:"<?cs var:page.deprecated ?>" }<?cs if:!last(page) ?>,<?cs /if ?
    [all...]
gcm_navtree_data.cs 2 <?cs var:reference_tree ?>
gms_navtree_data.cs 2 <?cs var:reference_tree ?>
navtree_data.cs 2 <?cs var:reference_tree ?>
macros_override.cs 1 <?cs # Create a comma separated list of annotations on obj that were in showAnnotations in Doclava ?>
2 <?cs # pre is an HTML string to start the list, post is an HTML string to close the list ?>
3 <?cs # for example call:show_annotations_list(cl, "<td>Annotations: ", "</td>") ?>
4 <?cs # if obj has nothing on obj.showAnnotations, nothing will be output ?>
5 <?cs def:show_annotations_list(obj) ?>
6 <?cs each:anno = obj.showAnnotations ?>
7 <?cs if:first(anno) ?>
10 <?cs /if ?>
11 @<?cs var:anno.type.label ?>
12 <?cs if:last(anno) == 0 ?
    [all...]
  /external/u-boot/arch/arm/include/asm/mach-imx/
spi.h 14 int board_spi_cs_gpio(unsigned bus, unsigned cs);
  /build/make/tools/droiddoc/templates-ndk/
gcm_navtree_data.cs 2 <?cs var:reference_tree ?>
gms_navtree_data.cs 2 <?cs var:reference_tree ?>
navtree_data.cs 2 <?cs var:reference_tree ?>
samples_navtree_data.cs 2 <?cs var:reference_tree ?>
timestamp.cs 1 var BUILD_TIMESTAMP = "<?cs var:page.now ?>";
  /external/tcpdump/
cpack.c 57 cpack_align_and_reserve(struct cpack_state *cs, size_t wordsize)
62 next = cpack_next_boundary(cs->c_buf, cs->c_next, wordsize);
65 if (next - cs->c_buf + wordsize > cs->c_len)
73 cpack_advance(struct cpack_state *cs, const size_t toskip)
76 if (cs->c_next - cs->c_buf + toskip > cs->c_len)
78 cs->c_next += toskip
    [all...]
  /build/make/tools/droiddoc/templates-pdk/
sampleindex.cs 1 <?cs include:"doctype.cs" ?>
2 <?cs include:"macros.cs" ?>
3 <?cs set:resources="true" ?>
5 <?cs include:"head_tag.cs" ?>
6 <?cs include:"header.cs" ?>
14 <a href="<?cs var:toroot ?>resources/browser.html?tag=sample">Sample Code</a>
    [all...]
  /external/mesa3d/src/amd/vulkan/
radv_cs.h 34 struct radeon_winsys_cs *cs,
37 if (cs->max_dw - cs->cdw < needed)
38 ws->cs_grow(cs, needed);
39 return cs->cdw + needed;
42 static inline void radeon_set_config_reg_seq(struct radeon_winsys_cs *cs, unsigned reg, unsigned num)
45 assert(cs->cdw + 2 + num <= cs->max_dw);
47 radeon_emit(cs, PKT3(PKT3_SET_CONFIG_REG, num, 0));
48 radeon_emit(cs, (reg - SI_CONFIG_REG_OFFSET) >> 2)
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
r600_cs.h 43 struct radeon_winsys_cs *cs,
46 vram += cs->used_vram;
47 gtt += cs->used_gart;
58 * Add a buffer to the buffer list for the given command stream (CS).
60 * All buffers used by a CS must be added to the list. This tells the kernel
75 ring->cs, rbo->buf,
106 !radeon_cs_memory_below_limit(rctx->screen, ring->cs,
114 static inline void radeon_set_config_reg_seq(struct radeon_winsys_cs *cs, unsigned reg, unsigned num)
117 assert(cs->current.cdw + 2 + num <= cs->current.max_dw)
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_sincos.c 27 sincos(double x, double *sn, double *cs)
41 *cs = 1;
45 __kernel_sincos(x, 0, 0, sn, cs);
52 *cs = x - x;
61 __kernel_sincos(y[0], y[1], 1, sn, cs);
64 __kernel_sincos(y[0], y[1], 1, cs, sn);
65 *cs = -*cs;
68 __kernel_sincos(y[0], y[1], 1, sn, cs);
70 *cs = -*cs
    [all...]
  /external/capstone/suite/
test_mc.sh 4 # At the output are all the mismatches between Capstone (CS) & LLVM (MC).
9 find MC/ -name *.cs | ./test_mc.py
12 # $ find MC/X86 -name *.cs | ./test_mc.py
15 # $ ./test_mc.py MC/X86/x86-32-fma3.s.cs

Completed in 2398 milliseconds

1 2 3 4 5 6 7 8 91011>>