Home
last modified time | relevance | path

Searched full:just (Results 476 - 500 of 17580) sorted by relevance

1...<<11121314151617181920>>...704

/third_party/python/Doc/distutils/
H A Dsourcedist.rst115 called :file:`MANIFEST.in` by default. The manifest template is just a list of
210 Just like in the setup script, file and directory names in the manifest template
231 with just the default file set
233 * use the list of files now in :file:`MANIFEST` (either just generated or read
240 Second, you might just want to (re)generate the manifest, but not create a source
/third_party/python/Lib/distutils/
H A Dversion.py32 """Abstract base class for version numbering classes. Just provides
219 # numbers: just split on period and compare the numbers as tuples.
238 # implemented here, this just isn't so.
257 # just as happy dealing with things like "2g6" and "1.13++". I don't
311 # from the parsed tuple -- so I just store the string here for
/third_party/python/Lib/distutils/command/
H A Dsdist.py63 "just regenerate the manifest and then stop "
154 # If user just wanted us to regenerate the manifest, stop now.
173 reading the manifest template (and writing the manifest), or just
174 reading the manifest, or just using the default file set -- it all
428 # put 'files' there; the 'mkpath()' is just so we don't die
/third_party/openssl/crypto/evp/
H A Dkeymgmt_lib.c34 /* Just in time creation of keydata */ in evp_keymgmt_util_try_import()
44 * It's fine if there was no data to transfer, we just end up with an in evp_keymgmt_util_try_import()
185 * all the work we just did. in evp_keymgmt_util_export_to_provider()
338 * evp_keymgmt_util_match() doesn't just look at the provider side "origin",
494 * We can then just set its |keydata| to what we have, which might in evp_keymgmt_util_copy()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DMachineSSAUpdater.cpp144 // If there is no definition of the renamed variable in this block, just use in GetValueInMiddleOfBlock()
149 // If there are no predecessors, just return undef. in GetValueInMiddleOfBlock()
178 // Otherwise, if all the merged values are the same, just use it. in GetValueInMiddleOfBlock()
182 // If an identical PHI is already in BB, just reuse it. in GetValueInMiddleOfBlock()
333 /// operands, i.e., it was just added.
/third_party/vk-gl-cts/external/vulkan-docs/src/proposals/
H A DVK_EXT_host_image_copy.adoc23 The extra copy involved due to it going through a buffer is not just a performance cost though.
161 Additionally, to avoid having to submit a command just to transition the image to the correct layout, the following function is introduced to do the layout transition on the host.
236 and applications can assume that host image copy is just as efficient as using device copies for resources which are
268 `identicalMemoryLayout` is intended for the gray area where the image is just swizzled in a slightly different pattern to aid host access,
283 In practice, especially for read-only textures, a host-transferred image in the `VK_IMAGE_LAYOUT_GENERAL` layout could be just as efficient as an image transitioned to `VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL`.
/third_party/skia/third_party/externals/swiftshader/docs/
H A DReactor.md31 Just-in-time (JIT) compiled code has the potential to be faster than statically compiled code, through [run-time specialization](http://en.wikipedia.org/wiki/Run-time_algorithm_specialisation). However, this is rarely achieved in practice.
37 While the benefit of run-time specialization should now be apparent, JIT-compiled languages lack many of the practical advantages of static compilation. JIT-compilers are very constrained in how much time they can spend on compiling the bytecode into machine code. This limits their ability to even reach parity with static compilation, let alone attempt to exceed it by performing run-time specialization. Also, even if the compilation time was not as constrained, they can't specialize at every opportunity because it would result in an explosive growth of the amount of generated code. There's a need to be very selective in only specializing the hotspots for often recurring conditions, and to manage a cache of the different variants. Even just selecting the size of the set of variables that form the entire condition to specialize for can get immensely complicated.
41 This is becoming especially problematic for GPUs, as they are now just as programmable as CPUs but you can still only command them through an API. Attempts to disguise this by using a single language, such as C++AMP and SYCL, still have difficulties expressing how data is exchanged, don't actually provide control over the specialization, they have hidden overhead, and they have unpredictable performance characteristics across devices. Meanwhile CPUs gain ever more cores and wider SIMD vector units, but statically compiled languages don't readily exploit this and can't deal with the many code paths required to extract optimal performance. A different language and framework is required.
59 The braces are superfluous. They just make the syntax look more like regular C++, and they offer a new scope for Reactor variables.
268 Note that this example uses regular C++ `if` and `else` constructs. They only determine which code ends up in the generated routine, and don't end up in the generated code themselves. Thus the routine contains a loop with just one arithmetic or logical operation, making it more efficient than if this was written in regular C++.
H A DdEQP.md79 * Just above, add an option to CommandLine: `--deqp-gl-context-type=egl`
80 * Just below, modify the BinaryPath from 'Debug' to 'Release' if you did a Release build at step 17
224 * Just above, add an option to CommandLine: `--deqp-gl-context-type=egl`
225 * Just below, remove 'Debug/' from the BinaryPath.
226 * Just one more line below, replace `../candy-build/deqp-wgl/` with `<path to deqp>/build/modules/${TestPackageDir}`.
/third_party/openssl/crypto/x509/
H A Dv3_conf.c233 /* Create a generic extension: for now just handle DER type */
306 * file section to an extension STACK. Just check in case sk == NULL.
338 * Add extensions to a certificate. Just check in case cert == NULL.
351 * Add extensions to a CRL. Just check in case crl == NULL.
364 * Add extensions to certificate request. Just check in case req is NULL.
/third_party/openssl/doc/man3/
H A DOSSL_PARAM.pod148 entities should remain oblivious and just pass the B<OSSL_PARAM> array
189 and there is therefore no need to copy the data that is passed, just
215 there is therefore no need to copy the data that is passed, just the
297 to have more than just the section title.
307 A couple of examples to just show how B<OSSL_PARAM> arrays could be
/third_party/skia/third_party/externals/libpng/intel/
H A Dfilter_sse2_intrinsics.c57 * That works with our main loop if we just say that left pixel was zero. in png_read_filter_row_sub3_sse2()
90 * That works with our main loop if we just say that left pixel was zero. in png_read_filter_row_sub4_sse2()
133 /* PNG requires a truncating average, so we can't just use _mm_avg_epu8 */ in png_read_filter_row_avg3_sse2()
150 /* PNG requires a truncating average, so we can't just use _mm_avg_epu8 */ in png_read_filter_row_avg3_sse2()
186 /* PNG requires a truncating average, so we can't just use _mm_avg_epu8 */ in png_read_filter_row_avg4_sse2()
/third_party/pcre2/pcre2/doc/html/
H A Dpcre2compat.html42 that the next three characters are not "a". It just asserts that the next
44 assertion just once). Perl allows some repeat quantifiers on other assertions,
84 treats a backslash between \Q and \E just like any other character. Note the
135 just with numbers, using an external table to translate between numbers and
146 error (for a while it was just deprecated). There may still be some cases where
/third_party/protobuf/objectivec/
H A DREADME.md103 // Note: Just like above, you don't have to check subMessage and otherMessage
105 // to create the siblingsArray, you can safely just append to it.
121 cases where you need to know whether it was set explicitly or you are just
168 Any number of files can be listed for a framework, just separate them with
184 Please make updates to the tests along with changes. If just changing the
/foundation/ability/ability_runtime/services/abilitymgr/src/screen_lock/
H A Dunlock_screen_manager.cpp44 TAG_LOGD(AAFwkTag::ABILITYMGR, "not aa start call, just start ability"); in UnlockScreen()
48 TAG_LOGD(AAFwkTag::ABILITYMGR, "not devlop mode, just start ability"); in UnlockScreen()
/foundation/graphic/graphic_2d/rosen/test/2d_engine/unittest/rosen_text/skia_txt/
H A Dpaint_record_test.cpp54 PaintRecord::RSColor color(0, 0, 0, 255); // 255 just fot test in HWTEST_F()
72 SkColor color = 255; // 255 just fot test in HWTEST_F()
/foundation/graphic/graphic_3d/lume/LumeEngine/src/os/mac/
H A Dplatform_mac.cpp41 // fix slashes. (just change \\ to /) in PlatformMac()
65 // just fallback on current path for now. (hoping that it's somewhat safe) in PlatformMac()
/foundation/graphic/graphic_3d/lume/LumeEngine/src/os/linux/
H A Dplatform_linux.cpp40 // fix slashes. (just change \\ to /) in PlatformLinux()
65 // just fallback on current path for now. (hoping that it's somewhat safe) in PlatformLinux()
/third_party/curl/docs/libcurl/
H A Dcurl_multi_assign.md42 something that just about every application that uses this API needs and then
43 libcurl can just as well do it since it already has the necessary
/third_party/curl/docs/
H A DDEPRECATE.md32 **comma-separated** names, but can also be provided separated with just
33 space. The ability to just use spaces for this has never been documented but
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/data/unicode/
H A DNormalizationCorrections.txt17 # mapping may be discovered that is truly just an unintended
32 # will be made to keep the entries limited to just those fixes.
/third_party/icu/ohos_icu4j/src/main/tests/resources/ohos/global/icu/dev/data/unicode/
H A DNormalizationCorrections.txt17 # mapping may be discovered that is truly just an unintended
32 # will be made to keep the entries limited to just those fixes.
/third_party/icu/icu4c/source/data/unidata/
H A DNormalizationCorrections.txt17 # mapping may be discovered that is truly just an unintended
32 # will be made to keep the entries limited to just those fixes.
/third_party/libwebsockets/
H A Dbug_report.md17 ** How can I reproduce the problem just using lws code? **
27 "hangs" --> this word is a red flag you didn't try to debug the issue much... exactly what does it mean, whole device frozen? Spinning 100% cpu? Just idle? Building on fire? Have you tried it via strace or similar if it seems frozen to see what it's doing? Attach a debugger like gdb -p pid and get a backtrace? perf top if Linux to see what it spends its time on.
/third_party/mbedtls/tests/suites/
H A Dtest_suite_platform_printf.function34 /* Nominal case: buffer just large enough */
79 /* Nominal case: buffer just large enough */
/third_party/mesa3d/docs/
H A Dhelpwanted.rst11 testing them. Just applying patches, testing and reporting back is
36 mailing list. Then post a message to propose what you want to do, just

Completed in 20 milliseconds

1...<<11121314151617181920>>...704