| /third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
| H A D | lp_linear_sampler.c | 729 assert(schan->file == TGSI_FILE_INPUT); in lp_linear_init_sampler() 730 assert(tchan->file == TGSI_FILE_INPUT); in lp_linear_init_sampler() 957 if (tex->coord[0].file != TGSI_FILE_INPUT || in lp_linear_check_sampler() 958 tex->coord[1].file != TGSI_FILE_INPUT) in lp_linear_check_sampler()
|
| /third_party/ltp/tools/sparse/sparse-src/ |
| H A D | sparse-llvm.c | 1336 char *file; in main() local 1345 FOR_EACH_PTR(filelist, file) { in main() 1346 symlist = sparse(file); in main() 1350 } END_FOR_EACH_PTR(file); in main()
|
| /third_party/node/deps/v8/base/trace_event/common/ |
| H A D | trace_event_common.h | 3 // found in the LICENSE file. 196 // the legacy implementation in the latter half of this file (and 229 #define TRACE_LOG_MESSAGE(file, message, line) \ 230 INTERNAL_TRACE_LOG_MESSAGE(file, message, line) 286 // Check that nobody includes this file directly. Clients are supposed to 289 #error "Another copy of this file has already been included." 983 #define TRACE_LOG_MESSAGE(file, message, line) \ 984 INTERNAL_TRACE_LOG_MESSAGE(file, message, line)
|
| /third_party/node/deps/v8/src/torque/ |
| H A D | csa-generator.cc | 3 // found in the LICENSE file. 92 const std::string& file = SourceFileMap::AbsolutePath(pos.source); in EmitSourcePosition() local 96 out() << " ca_.SetSourcePosition(\"" << file << "\", " in EmitSourcePosition() 867 std::string file = StringLiteralQuote( in EmitInstruction() local 871 out() << " pos_stack.push_back({" << file << ", " in EmitInstruction()
|
| /third_party/skia/third_party/externals/swiftshader/src/Shader/ |
| H A D | Shader.cpp | 4 // you may not use this file except in compliance with the License. 1459 std::ofstream file(fullName, std::ofstream::out); in print() 1463 file << inst->string(shaderType, shaderModel) << std::endl; in print() 1469 std::ofstream file(fileName, std::ofstream::out | std::ofstream::app); in printInstruction() 1471 file << instruction[index]->string(shaderType, shaderModel) << std::endl; in printInstruction()
|
| /third_party/python/Lib/test/ |
| H A D | test_gzip.py | 152 # ValueError, just like the corresponding functions on file objects. 154 # Write to a file, open it for reading, then close it. 167 # Open the file for writing, then close it. 180 # Append to the previous file 189 # Bug #1074261 was triggered when reading a file that contained 190 # many, many members. Create such a file and verify that reading it 198 # Try reading the file 352 # RFC 1952 specifies that this is the name of the input file, if any. 354 # file in this field. 404 self.fail("__enter__ on a closed file did [all...] |
| /third_party/rust/crates/rust-openssl/openssl/src/x509/ |
| H A D | mod.rs | 1193 /// Loads subject names from a file containing PEM-formatted certificates. 1196 pub fn load_client_ca_file<P: AsRef<Path>>(file: P) -> Result<Stack<X509Name>, ErrorStack> { in load_client_ca_file() 1197 let file = CString::new(file.as_ref().as_os_str().to_str().unwrap()).unwrap(); in load_client_ca_file() 1198 unsafe { cvt_p(ffi::SSL_load_client_CA_file(file.as_ptr())).map(|p| Stack::from_ptr(p)) } in load_client_ca_file()
|
| /third_party/rust/crates/nix/test/ |
| H A D | test_unistd.rs | 499 let path = tempdir.path().join("file"); in test_chown() 536 let path = tempdir.path().join("file"); in test_fchownat() 543 fchownat(Some(dirfd), "file", uid, gid, FchownatFlags::FollowSymlink) in test_fchownat() 547 fchownat(None, "file", uid, gid, FchownatFlags::FollowSymlink).unwrap(); in test_fchownat() 550 fchownat(None, "file", uid, gid, FchownatFlags::FollowSymlink).unwrap_err(); in test_fchownat() 624 let file = NamedTempFile::new().unwrap(); in test_acct() 625 let path = file.path().to_str().unwrap(); in test_acct() 762 let path = tempdir.path().join("file"); in test_truncate() 779 let path = tempdir.path().join("file"); in test_ftruncate() 905 // Create file in test_linkat_file() [all...] |
| /test/testfwk/xdevice/plugins/ohos/src/ohos/testkit/ |
| H A D | kit.py | 7 # you may not use this file except in compliance with the License. 142 LOG.debug("Trying to push the file local {} to remote{}".format(src, dst)) 146 "The src file {} to be pushed does not exist".format(src)) 148 LOG.debug("Push file finished from {} to {}".format(src, dst)) 251 LOG.debug("Trying to push the file local {} to remote {}".format(src, dst)) 270 for file in files: 271 device.push_file("{}".format(os.path.join(root, file)), 274 "Push file finished from {} to {}".format( 275 os.path.join(root, file), dst)) 276 self.pushed_file.append(os.path.join(dst, file)) [all...] |
| /third_party/mesa3d/src/amd/compiler/ |
| H A D | aco_validate.cpp | 38 const char* file, unsigned line, const char* fmt, va_list args) in aco_log() 46 ralloc_asprintf_append(&msg, " In file %s:%u\n", file, line); in aco_log() 60 _aco_perfwarn(Program* program, const char* file, unsigned line, const char* fmt, ...) in _aco_perfwarn() argument 65 aco_log(program, ACO_COMPILER_DEBUG_LEVEL_PERFWARN, "ACO PERFWARN:\n", file, line, fmt, args); in _aco_perfwarn() 70 _aco_err(Program* program, const char* file, unsigned line, const char* fmt, ...) in _aco_err() argument 75 aco_log(program, ACO_COMPILER_DEBUG_LEVEL_ERROR, "ACO ERROR:\n", file, line, fmt, args); in _aco_err() 1083 std::array<unsigned, 2048> regs; /* register file in bytes */ in validate_ra() 37 aco_log(Program* program, enum aco_compiler_debug_level level, const char* prefix, const char* file, unsigned line, const char* fmt, va_list args) aco_log() argument
|
| /third_party/node/src/crypto/ |
| H A D | crypto_context.cc | 143 // Read a file that contains our certificate in "PEM" format, 690 // the method implemented elsewhere in this file. The naming is a bit in AddCert() 1339 const char* file) { in AddCertsFromFile() 1343 BIOPointer bio(BIO_new_file(file, "r")); in AddCertsFromFile() 1364 void UseExtraCaCerts(const std::string& file) { in UseExtraCaCerts() argument 1365 if (file.empty()) return; in UseExtraCaCerts() 1368 if (auto err = AddCertsFromFile(store, file.c_str())) { in UseExtraCaCerts() 1373 file.c_str(), in UseExtraCaCerts() 1337 AddCertsFromFile( X509_STORE* store, const char* file) AddCertsFromFile() argument
|
| /third_party/ntfs-3g/libntfs-3g/ |
| H A D | runlist.c | 10 * This program/include file is free software; you can redistribute it and/or 15 * This program/include file is distributed in the hope that it will be 22 * distribution in the file COPYING); if not, write to the Free Software 261 /* We may have changed the length of the file, so fix the end marker */ in ntfs_rl_append() 351 /* Writing beyond the end of the file and there's a discontinuity. */ in ntfs_rl_insert() 445 /* We may have changed the length of the file, so fix the end marker */ in ntfs_rl_replace() 604 start = ((drl[dins].lcn < LCN_RL_NOT_MAPPED) || /* End of file */ in ntfs_runlists_merge_i() 606 finish = ((drl[dins].lcn >= LCN_RL_NOT_MAPPED) && /* End of file */ in ntfs_runlists_merge_i() 724 * 2. When new clusters are allocated to fill a hole or extend a file. 1102 * lower than @count this means that the read reached end of file o 1870 test_rl_read_buffer(const char *file, u8 *buf, int bufsize) test_rl_read_buffer() argument 1941 test_rl_pure_test(int test, BOOL contig, BOOL multi, int vcn, int len, runlist_element *file, int size) test_rl_pure_test() argument [all...] |
| /third_party/nghttp2/src/ |
| H A D | HttpServer.cc | 404 // We use timer to close file descriptor and delete the entry from in release_fd() 425 // cache for file descriptors to read file. 1331 int file = open(file_path.c_str(), O_RDONLY | O_BINARY); in prepare_response() local 1332 if (file == -1) { in prepare_response() 1340 if (fstat(file, &buf) == -1) { in prepare_response() 1341 close(file); in prepare_response() 1348 close(file); in prepare_response() 1374 file_path, FileEntry(file_path, buf.st_size, buf.st_mtime, file, in prepare_response() 1961 std::cerr << "Could not open status response body file in make_status_body() [all...] |
| /third_party/node/deps/v8/src/compiler/ |
| H A D | code-assembler.cc | 3 // found in the LICENSE file. 106 const char* file, in SetInitialDebugInformation() 109 AssemblerDebugInfo debug_info = {msg, file, line}; in SetInitialDebugInformation() 110 raw_assembler_->SetCurrentExternalSourcePosition({file, line}); in SetInitialDebugInformation() 535 void CodeAssembler::SetSourcePosition(const char* file, int line) { in SetSourcePosition() argument 536 raw_assembler()->SetCurrentExternalSourcePosition({file, line}); in SetSourcePosition() 1573 {debug_info.file, debug_info.line}); in Bind() 105 SetInitialDebugInformation(const char* msg, const char* file, int line) SetInitialDebugInformation() argument
|
| /third_party/mesa3d/src/intel/compiler/ |
| H A D | brw_eu_validate.c | 24 /** @file brw_eu_validate.c 26 * This file implements a pass that validates shader assembly. 37 * at all. Functional changes to this file without corresponding unit tests (in 307 * No reg file bits on Gfx6-10 (align16) in invalid_values() 317 "invalid register file encoding"); in invalid_values() 361 * there's no bit to control the file. in sources_not_null() 366 /* Nothing to test. Split sends can only encode a file in sources that are in sources_not_null() 1785 unsigned file = num_sources == 1 ? in vector_immediate_restrictions() local 1788 if (file != BRW_IMMEDIATE_VALUE) in vector_immediate_restrictions() 1878 enum brw_reg_file file; in special_requirements_for_handling_double_precision_data_types() local [all...] |
| /third_party/node/deps/uv/src/win/ |
| H A D | pipe.c | 1820 /* Read an exact number of bytes from a pipe. If an error or end-of-file is 2272 int uv_pipe_open(uv_pipe_t* pipe, uv_file file) { in uv_pipe_open() argument 2273 HANDLE os_handle = uv__get_osfhandle(file); in uv_pipe_open() 2289 /* In order to avoid closing a stdio file descriptor 0-2, duplicate the in uv_pipe_open() 2295 if (file <= 2) { in uv_pipe_open() 2305 file = -1; in uv_pipe_open() 2335 file, in uv_pipe_open() 2338 if (file == -1) in uv_pipe_open()
|
| /third_party/skia/third_party/externals/dawn/src/dawn_native/ |
| H A D | ShaderModule.cpp | 4 // you may not use this file except in compliance with the License. 416 ResultOrError<tint::Program> ParseWGSL(const tint::Source::File* file, in ParseWGSL() argument 418 tint::Program program = tint::reader::wgsl::Parse(file); in ParseWGSL() 425 program.Diagnostics().str(), file->content.data); in ParseWGSL() 974 TintSource(ARGS&&... args) : file(std::forward<ARGS>(args)...) { 977 tint::Source::File file; 1039 DAWN_TRY_ASSIGN(program, ParseWGSL(&tintSource->file, outMessages));
|
| /third_party/python/Lib/test/test_import/ |
| H A D | __init__.py | 51 # creates the module file 173 ext, "file.", file=f) 176 print("a =", a, file=f) 177 print("b =", b, file=f) 210 # Create a file with a list of 65000 elements. 218 # Compile & remove .py file; we only need .pyc. 249 print("a = 1/0", file=f) 307 # On WinXP, just replacing the .py file wasn't enough to 310 # compiled file to [all...] |
| /third_party/selinux/libsepol/src/ |
| H A D | services.c | 1680 /* Reading from a policy "file". */ 1736 * Reads a string and null terminates it from the policy file. 1771 * a policy database binary representation file. 1792 struct policy_file file, *fp; in sepol_load_policy() local 1794 policy_file_init(&file); in sepol_load_policy() 1795 file.type = PF_USE_MEMORY; in sepol_load_policy() 1796 file.data = data; in sepol_load_policy() 1797 file.len = len; in sepol_load_policy() 1798 fp = &file; in sepol_load_policy() 1853 * Return the SIDs to use for an unlabeled file syste [all...] |
| /applications/standard/systemui/ |
| H A D | gradlew.bat | 5 @rem you may not use this file except in compliance with the License.
|
| /test/testfwk/xdevice/src/xdevice/_core/report/ |
| H A D | encrypt.py | 7 # you may not use this file except in compliance with the License. 169 # if the size of file is large, use this function 180 with open(file=src_file, mode="rb") as _file:
|
| /test/xts/hats/kernel/syscalls/fileio/copyfilerange/ |
| H A D | CopyFileRangeApiTest.cpp | 4 * you may not use this file except in compliance with the License. 24 #include <sys/file.h>
|
| /test/xts/hats/kernel/syscalls/fileio/fcntl/ |
| H A D | FcntlApiTest.cpp | 4 * you may not use this file except in compliance with the License. 24 #include <sys/file.h> 91 * @tc.desc : fcntl set file lock success and return unlock by get lock check.
|
| /test/xts/hats/kernel/syscalls/fileio/fchownat/ |
| H A D | FchownatApiTest.cpp | 4 * you may not use this file except in compliance with the License. 24 #include <sys/file.h> 64 * @tc.desc : fchownat change specify path file owner id and group id success. 99 * @tc.desc : fchownat change current path file owner id and group id by AT_FDCWD success. 139 * @tc.desc : fchownat change invalid file owner id and group id fail, errno EBADF. 156 * @tc.desc : fchownat change file owner id and group id by file link success. 199 * @tc.desc : fchownat change owner id and group id of file link itself success. 242 * @tc.desc : fchownat change current path file owner id and group id by AT_EMPTY_PATH success.
|
| /third_party/ffmpeg/libavcodec/arm/ |
| H A D | idctdsp_arm.S | 5 @ This file is part of FFmpeg.
|