/third_party/mesa3d/src/panfrost/midgard/ |
D | mir.c | 365 midgard_bundle *bundles = in mir_bundle_idx_for_ins() local 366 (midgard_bundle *) block->bundles.data; in mir_bundle_idx_for_ins() 368 size_t count = (block->bundles.size / sizeof(midgard_bundle)); in mir_bundle_idx_for_ins() 371 for (unsigned j = 0; j < bundles[i].instruction_count; ++j) { in mir_bundle_idx_for_ins() 372 if (bundles[i].instructions[j] == tag) in mir_bundle_idx_for_ins() 389 size_t count = util_dynarray_num_elements(&block->bundles, midgard_bundle); in mir_insert_instruction_before_scheduled() 390 UNUSED void *unused = util_dynarray_grow(&block->bundles, midgard_bundle, 1); in mir_insert_instruction_before_scheduled() 392 midgard_bundle *bundles = (midgard_bundle *) block->bundles.data; in mir_insert_instruction_before_scheduled() local 393 memmove(bundles + before + 1, bundles + before, (count - before) * sizeof(midgard_bundle)); in mir_insert_instruction_before_scheduled() 394 midgard_bundle *before_bundle = bundles + before + 1; in mir_insert_instruction_before_scheduled() [all …]
|
D | midgard_schedule.c | 1449 struct util_dynarray bundles; in schedule_block() local 1450 util_dynarray_init(&bundles, NULL); in schedule_block() 1471 util_dynarray_append(&bundles, midgard_bundle, bundle); in schedule_block() 1479 util_dynarray_init(&block->bundles, block); in schedule_block() 1480 util_dynarray_foreach_reverse(&bundles, midgard_bundle, bundle) { in schedule_block() 1481 util_dynarray_append(&block->bundles, midgard_bundle, *bundle); in schedule_block() 1483 util_dynarray_fini(&bundles); in schedule_block()
|
D | compiler.h | 196 struct util_dynarray bundles; member 389 util_dynarray_foreach(&block->bundles, midgard_bundle, v) 392 util_dynarray_foreach_reverse(&block->bundles, midgard_bundle, v)
|
/third_party/icu/tools/unicodetools/com/ibm/rbm/ |
D | RBManager.java | 30 …private Vector bundles; // A Vector of NLSbundles, one for each … field in RBManager 77 bundles = new Vector(); in RBManager() 85 bundles.addElement(mainBundle); in RBManager() 170 bundles.addElement(dict); in RBManager() 262 Enumeration keys = ((Bundle)bundles.elementAt(0)).allItems.keys(); in RBManager() 281 bundles.addElement(dict); in RBManager() 386 for (int i = 0; i < bundles.size(); i++) { in writeToFile() 387 Bundle bundle = (Bundle)bundles.elementAt(i); in writeToFile() 409 for (int i=0; i < bundles.size(); i++) { in hideResource() 410 Bundle bundle = (Bundle)bundles.elementAt(i); in hideResource() [all …]
|
D | RBPropertiesImporter.java | 70 Vector bundles = import_rbm.getBundles(); in beginImport() local 72 for (int i=0; i < bundles.size(); i++) { in beginImport() 73 Bundle b = (Bundle)bundles.elementAt(i); in beginImport() 77 for (int i=0; i < bundles.size(); i++) { in beginImport() 78 Bundle b = (Bundle)bundles.elementAt(i); in beginImport()
|
D | RBReporter.java | 407 Vector bundles = rbm.getBundles(); in getAllLanguageReports() local 408 for (int i=0; i < bundles.size(); i++) { in getAllLanguageReports() 409 retStr += getLanguageReport(detailed, (Bundle)bundles.elementAt(i)); in getAllLanguageReports() 457 Vector bundles = rbm.getBundles(); in getHTMLReportz() local 470 for (int i=0; i < bundles.size(); i++) { in getHTMLReportz() 471 getHTMLLanguageReportz(html, body_elem, detailed, (Bundle)bundles.elementAt(i)); in getHTMLReportz() 486 Vector bundles = rbm.getBundles(); in getHTMLReport() local 487 for (int i=0; i < bundles.size(); i++) { in getHTMLReport() 488 buffer.append(getHTMLLanguageReport(detailed, (Bundle)bundles.elementAt(i))); in getHTMLReport() 575 Vector bundles = rbm.getBundles(); in getXMLReportz() local [all …]
|
/third_party/icu/tools/unicodetools/com/ibm/rbm/gui/ |
D | RBProjectItemPanel.java | 44 Vector bundles = bundle.getBundles(); in actionPerformed() local 49 for (int j=0; j < bundles.size(); j++) { in actionPerformed() 50 Bundle rbundle = (Bundle)bundles.elementAt(j); in actionPerformed() 72 Vector bundles = bundle.getBundles(); in actionPerformed() local 73 for (int i=0; i < bundles.size(); i++) { in actionPerformed() 74 Bundle rbundle = (Bundle)bundles.elementAt(i); in actionPerformed() 139 Vector bundles = manager.getBundles(); in updateComponents() local 140 itemFields = new JTextField[bundles.size()]; in updateComponents() 141 itemLabels = new JLabel[bundles.size()]; in updateComponents() 142 commitButtons = new JButton[bundles.size()]; in updateComponents() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | SpillPlacement.cpp | 199 bundles = &getAnalysis<EdgeBundles>(); in runOnMachineFunction() 203 nodes = new Node[bundles->getNumBundles()]; in runOnMachineFunction() 205 TodoList.setUniverse(bundles->getNumBundles()); in runOnMachineFunction() 243 if (bundles->getBlocks(n).size() > 100) { in activate() 271 unsigned ib = bundles->getBundle(I->Number, false); in addConstraints() 278 unsigned ob = bundles->getBundle(I->Number, true); in addConstraints() 292 unsigned ib = bundles->getBundle(*I, false); in addPrefSpill() 293 unsigned ob = bundles->getBundle(*I, true); in addPrefSpill() 305 unsigned ib = bundles->getBundle(Number, false); in addLinks() 306 unsigned ob = bundles->getBundle(Number, true); in addLinks() [all …]
|
D | SpillPlacement.h | 46 const EdgeBundles *bundles; variable
|
/third_party/icu/docs/userguide/locale/ |
D | resources.md | 145 the data stored in resource bundles. 147 Resource bundles rely on the ICU data framework. For more information on the 153 Resource bundles are collections of resources. Individual resources can contain 168 bundles, a resource bundle for default locale will be used. If this fails, 172 situation an error. Custom packages of resource bundles may or may not 197 ICU4C provides both C and C++ APIs for using resource bundles. The core 201 Resource bundles use ICU's "open use close" paradigm. In C all the resource 203 allows access to both resource bundles and individual resources. In C++, class 204 `ResourceBundle` should be used for both resource bundles and individual 240 general bundle was returned. If you are opening ICU resource bundles, do note [all …]
|
D | localizing.md | 26 bundles. The most important file format feature for translation of text elements 36 denominator for resource bundles. 96 ICU4J can also access the ICU4C resource bundles described in the next section, 101 ### .txt resource bundles 141 ### ICU4C XML resource bundles 144 capabilities of the .txt and binary ICU4C resource bundles in XML form. However, 160 1. Multiple resource bundles per XLIFF file are supported. 212 publications including manuals and resource bundles. It is extensible. For 227 Resource bundles ("portable object files", extension .po) are plain text files
|
/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/ |
D | GPURenderPassEncoder.cpp | 103 wgpu::RenderBundle* bundles = nullptr; in executeBundles() local 105 if (!conv(bundles, bundleCount, bundles_in)) { in executeBundles() 109 enc_.ExecuteBundles(bundleCount, bundles); in executeBundles()
|
/third_party/node/deps/npm/lib/ |
D | build.js | 110 var bundles = pkg.bundleDependencies || pkg.bundledDependencies || [] 126 (deps.indexOf(file) === -1 || bundles.indexOf(file) !== -1)
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/ |
D | RenderPassEncoder.cpp | 281 Ref<RenderBundleBase>* bundles = in APIExecuteBundles() local 284 bundles[i] = renderBundles[i]; in APIExecuteBundles() 286 const RenderPassResourceUsage& usages = bundles[i]->GetResourceUsage(); in APIExecuteBundles()
|
D | Commands.cpp | 117 auto bundles = commands->NextData<Ref<RenderBundleBase>>(cmd->count); in FreeCommands() local 119 (&bundles[i])->~Ref<RenderBundleBase>(); in FreeCommands()
|
/third_party/skia/third_party/externals/dawn/src/tests/end2end/ |
D | DrawIndexedIndirectTests.cpp | 466 std::vector<wgpu::RenderBundle> bundles; in TEST_P() local 476 bundles.push_back(bundleEncoder.Finish()); in TEST_P() 487 bundles.push_back(bundleEncoder.Finish()); in TEST_P() 493 pass.ExecuteBundles(bundles.size(), bundles.data()); in TEST_P()
|
/third_party/freetype/docs/ |
D | release | 64 . Create the doc bundles (`freetype-doc-<version>.tar.gz`, 74 and `$SOURCEFORGE_USER` variables) to sign and upload the bundles to 188 - instructions how to verify the bundles using the `.sig` file data,
|
/third_party/flutter/skia/infra/bots/assets/chromebook_x86_64_gles/ |
D | README.md | 9 This script installs the following GL packages and then bundles them with the
|
/third_party/skia/infra/bots/assets/chromebook_x86_64_gles/ |
D | README.md | 9 This script installs the following GL packages and then bundles them with the
|
/third_party/flutter/skia/infra/bots/assets/chromebook_arm_gles/ |
D | README.md | 9 This script installs the following GL packages and then bundles them with the
|
/third_party/skia/infra/bots/assets/chromebook_arm_gles/ |
D | README.md | 9 This script installs the following GL packages and then bundles them with the
|
/third_party/skia/docker/binary-size/ |
D | Dockerfile | 1 # Dockerfile that bundles chromium's binary_size tools
|
/third_party/flutter/skia/docker/binary-size/ |
D | Dockerfile | 1 # Dockerfile that bundles chromium's binary_size tools
|
/third_party/icu/docs/userguide/ |
D | services.md | 60 The ICU package contains the locale and resource bundles as well as the classes 62 resource bundles) and provides APIs to access and make use of that data in 76 ICU stores locale-specific data in resource bundles, which provide a general 79 many locales. Resource bundles contain the locale data of applications that use 83 In addition to storing system-level data in ICU's resource bundles, applications 84 typically also need to use resource bundles of their own to store 86 to access these bundles and also provides the tools to build them.
|
/third_party/flutter/skia/third_party/externals/freetype/docs/ |
D | release | 63 . Create the doc bundles (freetype-doc-<version>.tar.gz, 73 and $SOURCEFORGE_USER variables) to sign and upload the bundles to
|