Home
last modified time | relevance | path

Searched refs:file (Results 5676 - 5700 of 14508) sorted by relevance

1...<<221222223224225226227228229230>>...581

/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/
H A DvktDrawShaderInvocationTests.cpp9 * you may not use this file except in compliance with the License.
21 * \file
82 const char *file; in createTests() member
93 cts_amber::AmberTestCase* testCase = cts_amber::createAmberTestCase(testCtx, cases[i].name, dataDir, cases[i].file); in createTests()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
H A DContextImpl.cpp4 // found in the LICENSE file.
44 const char *file, in handleError()
50 mErrors->handleError(errorCode, errorStream.str().c_str(), file, function, line); in handleError()
42 handleError(GLenum errorCode, const char *message, const char *file, const char *function, unsigned int line) handleError() argument
/third_party/openssl/providers/common/der/
H A Doids_to_c.pm5 # this file except in compliance with the License. You can obtain a copy
6 # in the file LICENSE in the source distribution or at
71 foreach my $file (@_) {
72 my $input = File::Spec->catfile($opts{dir}, $file);
/third_party/openssl/ohos_lite/include/internal/
H A Dcryptlib.h5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
32 const char *file, int line) in ossl_assert_int()
35 OPENSSL_die(exprstr, file, line); in ossl_assert_int()
31 ossl_assert_int(int expr, const char *exprstr, const char *file, int line) ossl_assert_int() argument
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/sample/sfview/
H A DHtmlViewer.java41 public static Font[] loadFont(File file) throws IOException { in loadFont() argument
46 is = new FileInputStream(file); in loadFont()
/third_party/skia/third_party/externals/imgui/examples/example_emscripten_opengl3/
H A DMakefile43 # Emscripten allows preloading a file or folder to be accessible at runtime.
46 # (Default value is 0. Set to 1 to enable file-system and include the misc/fonts/ folder as part of the build.)
53 LDFLAGS += --no-heap-copy --preload-file ../../misc/fonts@/fonts
63 LDFLAGS += --shell-file shell_minimal.html $(EMS)
/third_party/skia/third_party/externals/dawn/src/common/
H A DLog.cpp4 // you may not use this file except in compliance with the License.
110 LogMessage DebugLog(const char* file, const char* function, int line) { in DebugLog() argument
112 message << file << ":" << line << "(" << function << ")"; in DebugLog()
/third_party/skia/third_party/externals/harfbuzz/test/fuzzing/
H A Drun-subset-fuzzer-tests.py47 for file in os.listdir (parent_path):
48 path = os.path.join(parent_path, file)
/third_party/python/Modules/_ctypes/libffi_osx/include/
H A Dffi_common.h54 /*@temp@*/ char* file,
61 /*@temp@*/ char* file,
/third_party/skia/third_party/externals/tint/src/ast/
H A Dmodule_clone_test.cc4 // you may not use this file except in compliance with the License.
29 Source::File file("test.wgsl", R"([[block]] in TEST()
122 auto src = reader::wgsl::Parse(&file); in TEST()
/third_party/skia/third_party/freetype2/
H A Droll-freetype.sh31 git -C ${FT_GIT_DIR} cat-file blob ${FT_PREVIOUS_REV}:${FT_INCLUDE} >> ${TMPFILE} &&
32 git merge-file ${FT_BUILD_DIR}/${SKIA_INCLUDE} ${TMPFILE} ${FT_GIT_DIR}/${FT_INCLUDE} &&
/third_party/skia/third_party/externals/icu/source/common/unicode/
H A Duobject.h10 * file name: uobject.h
29 * \file
180 * @param file The file where the allocation was requested
183 static void * U_EXPORT2 operator new(size_t size, const char* file, int line) U_NOEXCEPT;
188 * @param file The file where the allocation was requested
191 static void U_EXPORT2 operator delete(void* p, const char* file, int line) U_NOEXCEPT;
/third_party/typescript/tests/baselines/reference/tsbuild/declarationEmit/
H A Dwhen-declaration-file-used-inferred-type-from-referenced-project.js49 [12:00:17 AM] Project 'src/packages/pkg1/tsconfig.json' is out of date because output file 'src/packages/pkg1/lib/tsconfig.tsbuildinfo' does not exist
53 [12:00:26 AM] Project 'src/packages/pkg2/tsconfig.json' is out of date because output file 'src/packages/pkg2/lib/tsconfig.tsbuildinfo' does not exist
/third_party/python/PC/layout/support/
H A Dpip.py2 Extraction and file list generation for pip.
90 for file in wheels:
92 os.remove(file)
/third_party/python/PCbuild/
H A Dget_external.py65 print(f"Encountered permission error '{ex}'.{retry}", file=sys.stderr)
71 file=sys.stderr,
/third_party/skia/infra/bots/assets/chromebook_x86_64_gles/
H A Dcreate.py6 # found in the LICENSE file.
28 'create_and_upload.py.' % key), file=sys.stderr)
63 print('This script only runs on Linux.', file=sys.stderr)
/third_party/skia/infra/bots/assets/chromebook_arm_gles/
H A Dcreate.py6 # found in the LICENSE file.
28 'create_and_upload.py.' % key), file=sys.stderr)
63 print('This script only runs on Linux.', file=sys.stderr)
/third_party/skia/build/fuchsia/skqp/
H A Dappend_assets_to_manifest5 # found in the LICENSE file.
9 |root_dir| and appends every file as a Fuchsia package manifest entry to
61 for file in file_lines:
62 source = file
/third_party/spirv-tools/utils/
H A Dgenerate_changelog.py6 # you may not use this file except in compliance with the License.
17 # Args: <CHANGES-file> <tag> <output-file>
18 # Updates an output file with changelog from the given CHANGES file and tag.
19 # - search for first line matching <tag> in file <CHANGES-file>
21 # - writes all the lines in between those 2 tags into <output-file>
58 logging.error("usage: {} <CHANGES-path> <tag> <output-file>".format(sys.argv[0]))
67 with open(changes_path, "r") as file
[all...]
/kernel/linux/linux-5.10/drivers/crypto/hisilicon/
H A Dqm.c857 static struct hisi_qm *file_to_qm(struct debugfs_file *file) in file_to_qm() argument
859 struct qm_debug *debug = file->debug; in file_to_qm()
864 static u32 current_q_read(struct debugfs_file *file) in current_q_read() argument
866 struct hisi_qm *qm = file_to_qm(file); in current_q_read()
871 static int current_q_write(struct debugfs_file *file, u32 val) in current_q_write() argument
873 struct hisi_qm *qm = file_to_qm(file); in current_q_write()
890 static u32 clear_enable_read(struct debugfs_file *file) in clear_enable_read() argument
892 struct hisi_qm *qm = file_to_qm(file); in clear_enable_read()
898 static int clear_enable_write(struct debugfs_file *file, u32 rd_clr_ctrl) in clear_enable_write() argument
900 struct hisi_qm *qm = file_to_qm(file); in clear_enable_write()
913 struct debugfs_file *file = filp->private_data; qm_debug_read() local
939 struct debugfs_file *file = filp->private_data; qm_debug_write() local
1523 struct debugfs_file *file = qm->debug.files + index; qm_create_debugfs_file() local
[all...]
/kernel/linux/linux-5.10/fs/btrfs/
H A Dfile.c318 * around to the start of the file. in __btrfs_run_defrag_inode()
669 * that would be a good hint to the block allocator for this file.
781 * delete it, otherwise we would insert a new file extent item in __btrfs_drop_extents()
782 * with the same key (offset) as that 0 bytes length file in __btrfs_drop_extents()
1563 struct file *file = iocb->ki_filp; in btrfs_buffered_write() local
1565 struct inode *inode = file_inode(file); in btrfs_buffered_write()
1802 struct file *file = iocb->ki_filp; in __btrfs_direct_write() local
1803 struct inode *inode = file_inode(file); in __btrfs_direct_write()
1861 struct file *file = iocb->ki_filp; btrfs_file_write_iter() local
2095 btrfs_sync_file(struct file *file, loff_t start, loff_t end, int datasync) btrfs_sync_file() argument
2836 btrfs_punch_hole(struct file *file, loff_t offset, loff_t len) btrfs_punch_hole() argument
3279 btrfs_fallocate(struct file *file, int mode, loff_t offset, loff_t len) btrfs_fallocate() argument
3557 btrfs_file_llseek(struct file *file, loff_t offset, int whence) btrfs_file_llseek() argument
[all...]
/kernel/linux/linux-5.10/arch/powerpc/kvm/
H A Dbook3s_64_mmu_radix.c12 #include <linux/file.h>
1241 static int debugfs_radix_open(struct inode *inode, struct file *file) in debugfs_radix_open() argument
1253 file->private_data = p; in debugfs_radix_open()
1255 return nonseekable_open(inode, file); in debugfs_radix_open()
1258 static int debugfs_radix_release(struct inode *inode, struct file *file) in debugfs_radix_release() argument
1260 struct debugfs_radix_state *p = file->private_data; in debugfs_radix_release()
1267 static ssize_t debugfs_radix_read(struct file *file, cha argument
1419 debugfs_radix_write(struct file *file, const char __user *buf, size_t len, loff_t *ppos) debugfs_radix_write() argument
[all...]
/kernel/linux/linux-5.10/arch/sparc/kernel/
H A Dmdesc.c1252 static int mdesc_open(struct inode *inode, struct file *file) in mdesc_open() argument
1259 file->private_data = hp; in mdesc_open()
1264 static ssize_t mdesc_read(struct file *file, char __user *buf, in mdesc_read() argument
1267 struct mdesc_handle *hp = file->private_data; in mdesc_read()
1288 static loff_t mdesc_llseek(struct file *file, loff_t offset, int whence) in mdesc_llseek() argument
1290 struct mdesc_handle *hp = file->private_data; in mdesc_llseek()
1292 return no_seek_end_llseek_size(file, offse in mdesc_llseek()
1298 mdesc_close(struct inode *inode, struct file *file) mdesc_close() argument
[all...]
/kernel/linux/linux-5.10/drivers/char/
H A Dsonypi.c873 static int sonypi_misc_fasync(int fd, struct file *filp, int on) in sonypi_misc_fasync()
878 static int sonypi_misc_release(struct inode *inode, struct file *file) in sonypi_misc_release() argument
886 static int sonypi_misc_open(struct inode *inode, struct file *file) in sonypi_misc_open() argument
898 static ssize_t sonypi_misc_read(struct file *file, char __user *buf, in sonypi_misc_read() argument
905 (file->f_flags & O_NONBLOCK)) in sonypi_misc_read()
922 struct inode *inode = file_inode(file); in sonypi_misc_read()
929 static __poll_t sonypi_misc_poll(struct file *fil argument
[all...]
/kernel/linux/linux-6.6/arch/powerpc/kvm/
H A Dbook3s_64_mmu_radix.c12 #include <linux/file.h>
1270 static int debugfs_radix_open(struct inode *inode, struct file *file) in debugfs_radix_open() argument
1282 file->private_data = p; in debugfs_radix_open()
1284 return nonseekable_open(inode, file); in debugfs_radix_open()
1287 static int debugfs_radix_release(struct inode *inode, struct file *file) in debugfs_radix_release() argument
1289 struct debugfs_radix_state *p = file->private_data; in debugfs_radix_release()
1296 static ssize_t debugfs_radix_read(struct file *file, cha argument
1448 debugfs_radix_write(struct file *file, const char __user *buf, size_t len, loff_t *ppos) debugfs_radix_write() argument
[all...]

Completed in 24 milliseconds

1...<<221222223224225226227228229230>>...581