/third_party/skia/third_party/externals/freetype/docs/oldlogs/ |
H A D | ChangeLog.24 | 4280 (cff_face_init): Use it to strip off the style part of the family 6350 This file is part of the FreeType project, and may only be used, modified,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
H A D | ARMBaseInstrInfo.cpp | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 1158 // FIXME: It's possible to only store part of the QQ register if the in storeRegToStackSlot()
|
H A D | ARMISelDAGToDAG.cpp | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 2211 // If it's a vst3, form a quad D-register and leave the last part as in SelectVST()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/Disassembler/ |
H A D | ARMDisassembler.cpp | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 694 /// part of the setupForSymbolicDisassembly() call then that function is called
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/ |
H A D | NVPTXISelLowering.cpp | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 295 // loaded/stored (i.e. as a scalar, or as part of a vector
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
H A D | PPCInstrInfo.td | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 929 /// This is just the offset part of iaddr, used for preinc.
|
/third_party/skia/third_party/externals/expat/expat/lib/ |
H A D | xmlparse.c | 6523 * This is part of a loop copying the default prefix binding in getContext() 6526 * terminating NUL character, as part of setContext(). When in getContext()
|
/third_party/python/Modules/expat/ |
H A D | xmlparse.c | 6555 * This is part of a loop copying the default prefix binding in getContext() 6558 * terminating NUL character, as part of setContext(). When in getContext()
|
/third_party/skia/modules/skparagraph/tests/ |
H A D | SkParagraphTest.cpp | 7340 // Bounding boxes around a part of a grapheme are empty in UNIX_ONLY_TEST() 7395 // Bounding boxes around a part of a grapheme are empty in UNIX_ONLY_TEST()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/ |
H A D | driver_nl80211.c | 1135 * part of the EVENT_INTERFACE_DISABLED handling for in wpa_driver_nl80211_event_rtm_newlink() 4664 * driver as authenticated already, and ASSOCIATED isn't part of the in wpa_driver_nl80211_sta_add()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
H A D | wpa_supplicant.c | 435 * to a mode where WPA is not enabled. This is called as part of the 7359 "Do not deauthenticate as part of interface deinit since WoWLAN is enabled");
|
/third_party/node/doc/api/ |
H A D | fs.json | 883 "desc": "<p>Truncates the file.</p>\n<p>If the file was larger than <code>len</code> bytes, only the first <code>len</code> bytes will be\nretained in the file.</p>\n<p>The following example retains only the first four bytes of the file:</p>\n<pre><code class=\"language-mjs\">import { open } from 'node:fs/promises';\n\nlet filehandle = null;\ntry {\n filehandle = await open('temp.txt', 'r+');\n await filehandle.truncate(4);\n} finally {\n await filehandle?.close();\n}\n</code></pre>\n<p>If the file previously was shorter than <code>len</code> bytes, it is extended, and the\nextended part is filled with null bytes (<code>'\\0'</code>):</p>\n<p>If <code>len</code> is negative then <code>0</code> will be used.</p>" 4065 "desc": "<p>Truncates the file descriptor. No arguments other than a possible exception are\ngiven to the completion callback.</p>\n<p>See the POSIX <a href=\"http://man7.org/linux/man-pages/man2/ftruncate.2.html\"><code>ftruncate(2)</code></a> documentation for more detail.</p>\n<p>If the file referred to by the file descriptor was larger than <code>len</code> bytes, only\nthe first <code>len</code> bytes will be retained in the file.</p>\n<p>For example, the following program retains only the first four bytes of the\nfile:</p>\n<pre><code class=\"language-mjs\">import { open, close, ftruncate } from 'node:fs';\n\nfunction closeFd(fd) {\n close(fd, (err) => {\n if (err) throw err;\n });\n}\n\nopen('temp.txt', 'r+', (err, fd) => {\n if (err) throw err;\n\n try {\n ftruncate(fd, 4, (err) => {\n closeFd(fd);\n if (err) throw err;\n });\n } catch (err) {\n closeFd(fd);\n if (err) throw err;\n }\n});\n</code></pre>\n<p>If the file previously was shorter than <code>len</code> bytes, it is extended, and the\nextended part is filled with null bytes (<code>'\\0'</code>):</p>\n<p>If <code>len</code> is negative then <code>0</code> will be used.</p>" 6546 "desc": "<p>Write <code>buffer</code> to the file specified by <code>fd</code>.</p>\n<p><code>offset</code> determines the part of the buffer to be written, and <code>length</code> is\nan integer specifying the number of bytes to write.</p>\n<p><code>position</code> refers to the offset from the beginning of the file where this data\nshould be written. If <code>typeof position !== 'number'</code>, the data will be written\nat the current position. See <a href=\"http://man7.org/linux/man-pages/man2/pwrite.2.html\"><code>pwrite(2)</code></a>.</p>\n<p>The callback will be given three arguments <code>(err, bytesWritten, buffer)</code> where\n<code>bytesWritten</code> specifies how many <em>bytes</em> were written from <code>buffer</code>.</p>\n<p>If this method is invoked as its <a href=\"util.html#utilpromisifyoriginal\"><code>util.promisify()</code></a>ed version, it returns\na promise for an <code>Object</code> with <code>bytesWritten</code> and <code>buffer</code> properties.</p>\n<p>It is unsafe to use <code>fs.write()</code> multiple times on the same file without waiting\nfor the callback. For this scenario, <a href=\"#fscreatewritestreampath-options\"><code>fs.createWriteStream()</code></a> is\nrecommended.</p>\n<p>On Linux, positional writes don't work when the file is opened in append mode.\nThe kernel ignores the position argument and always appends the data to\nthe end of the file.</p>" 6851 "desc": "<p>When <code>file</code> is a file descriptor, the behavior is almost identical to directly\ncalling <code>fs.write()</code> like:</p>\n<pre><code class=\"language-mjs\">import { write } from 'node:fs';\nimport { Buffer } from 'node:buffer';\n\nwrite(fd, Buffer.from(data, options.encoding), callback);\n</code></pre>\n<p>The difference from directly calling <code>fs.write()</code> is that under some unusual\nconditions, <code>fs.write()</code> might write only part of the buffer and need to be\nretried to write the remaining data, whereas <code>fs.writeFile()</code> retries until\nthe data is entirely written (or an error occurs).</p>\n<p>The implications of this are a common source of confusion. In\nthe file descriptor case, the file is not replaced! The data is not necessarily\nwritten to the beginning of the file, and the file's original data may remain\nbefore and/or after the newly written data.</p>\n<p>For example, if <code>fs.writeFile()</code> is called twice in a row, first to write the\nstring <code>'Hello'</code>, then to write the string <code>', World'</code>, the file would contain\n<code>'Hello, World'</code>, and might contain some of the file's original data (depending\non the size of the original file, and the position of the file descriptor). If\na file name had been used instead of a descriptor, the file would be guaranteed\nto contain only <code>', World'</code>.</p>",
|
/third_party/mesa3d/src/intel/genxml/ |
H A D | gen9.xml | 2944 <field name="Split Level 2 Part 0" start="32" end="35" type="uint"/> 2945 <field name="Split Level 2 Part 1" start="36" end="39" type="uint"/> 2946 <field name="Split Level 2 Part 2" start="40" end="43" type="uint"/> 2947 <field name="Split Level 2 Part 3" start="44" end="47" type="uint"/>
|
/third_party/mesa3d/src/imgui/ |
H A D | imgui.cpp | 169 It is recommended you build and statically link the .cpp files as part of your project and not as shared library (DLL). 705 but windows are uniquely identified by their ID. Use "###" to pass a label that isn't part of ID: 2201 // FIXME-LEGACY: Ideally we should remove the Begin/End functions but they are part of the legacy API we still support. This is why some of the code in Step() calling Begin() and reassign some fields, spaghetti style. 7111 pos = ref_pos + ImVec2(2, 2); // If there's not enough room, for tooltip we prefer avoiding the cursor at all cost even if it means that part of the tooltip won't be visible. in FindBestWindowPosForPopup()
|
/third_party/vk-gl-cts/external/vulkan-docs/src/chapters/ |
H A D | resources.adoc | 4215 Transitions can: happen with an image memory barrier, included as part of a 4217 (see <<synchronization-image-memory-barriers>>), or as part of a subpass 6280 used as part of a sampling operation: 9754 Therefore, the layout specified as part of this transition will be the true
|
H A D | descriptorsets.adoc | 2193 Once created, pipeline layouts are used as part of pipeline creation (see 2194 <<pipelines, Pipelines>>), as part of binding descriptor sets (see 2195 <<descriptorsets-binding, Descriptor Set Binding>>), and as part of setting
|
H A D | pipelines.adoc | 7405 Structures described in this section are not part of the Vulkan API and are 7780 device creation as part of the slink:VkDeviceObjectReservationCreateInfo 8838 representations associated with it which are generated as part of the
|
H A D | resources.txt | 2909 Transitions can: happen with an image memory barrier, included as part of a 2911 (see <<synchronization-image-memory-barriers>>), or as part of a subpass 7284 Therefore, the layout specified as part of this transition will be the true
|
/foundation/arkui/ace_engine/interfaces/native/ |
H A D | native_node.h | 3705 * @brief Defines the color of the selected part of the slider track. This attribute can be set, reset, and obtained
3709 * .value[0].u32: color of the selected part of the slider track, in 0xARGB format, for example, <b>0xFF1122FF</b>. \n
3712 * .value[0].u32: color of the selected part of the slider track, in 0xARGB format, for example, <b>0xFF1122FF</b>.
|
/third_party/elfutils/src/ |
H A D | readelf.c | 3 This file is part of elfutils. 1541 /* Determine the segment this section is part of. */ in print_phdr() 2729 /* Handle the section if it is part of the versioning handling. */ in print_verinfo()
|
/third_party/backends/backend/ |
H A D | avision.c | 6 This file is part of the SANE package. 156 /* Attention2: This device table is part of the source code and as such 6524 /* Ok, well - this part is very messy. The AV122 and DM152 appear to in get_background_raster()
|
H A D | umax_pp_low.c | 3 This file is part of the SANE package. 11198 /* new part of buffer ... */ in sanei_umax_pp_checkModel() 11208 /* another new part ... */ in sanei_umax_pp_checkModel()
|
/third_party/mesa3d/src/amd/vulkan/ |
H A D | radv_cmd_buffer.c | 5 * based in part on anv driver which is: 2822 * bind our internal depth buffer that contains the VRS data as part of HTILE. in radv_emit_framebuffer_state() 2902 /* With indirect generated commands the index buffer bind may be part of the in radv_emit_index_buffer()
|
/third_party/node/doc/changelogs/ |
H A D | CHANGELOG_V15.md | 1022 part of a StreamWriteResult structure. This may be exploited to 2129 * \[[`6665dda9f6`](https://github.com/nodejs/node/commit/6665dda9f6)] - **quic**: implement QuicSocket Promise API, part 2 (James M Snell) [#34283](https://github.com/nodejs/node/pull/34283) 2130 * \[[`79c0e892dd`](https://github.com/nodejs/node/commit/79c0e892dd)] - **quic**: implement QuicSocket Promise API, part 1 (James M Snell) [#34283](https://github.com/nodejs/node/pull/34283)
|
/third_party/python/patches/ |
H A D | cpython_mingw_v3.11.4.patch | 508 + * iscygpty.h -- part of ptycheck 3002 +separately as part of ``hashlib`` itself. It now falls back properly to the 4876 + * iscygpty.c -- part of ptycheck
|