/aosp_15_r20/external/lua/src/ |
H A D | lparser.c | 56 lu_byte insidetbc; /* true if inside the scope of a to-be-closed var. */ 62 ** prototypes for recursive non-terminal functions 70 luaO_pushfstring(ls->L, "%s expected", luaX_token2str(ls, token))); in error_expected() 74 static l_noret errorlimit (FuncState *fs, int limit, const char *what) { in errorlimit() argument 75 lua_State *L = fs->ls->L; in errorlimit() 77 int line = fs->f->linedefined; in errorlimit() 83 luaX_syntaxerror(fs->ls, msg); in errorlimit() 87 static void checklimit (FuncState *fs, int v, int l, const char *what) { in checklimit() argument 88 if (v > l) errorlimit(fs, l, what); in checklimit() 96 if (ls->t.token == c) { in testnext() [all …]
|
H A D | lcode.c | 37 #define hasjumps(e) ((e)->t != (e)->f) 40 static int codesJ (FuncState *fs, OpCode o, int sj, int k); 46 ls->t.token = 0; /* remove "near <token>" from final message */ in luaK_semerror() 58 switch (e->k) { in tonumeral() 60 if (v) setivalue(v, e->u.ival); in tonumeral() 63 if (v) setfltvalue(v, e->u.nval); in tonumeral() 73 static TValue *const2val (FuncState *fs, const expdesc *e) { in const2val() argument 74 lua_assert(e->k == VCONST); in const2val() 75 return &fs->ls->dyd->actvar.arr[e->u.info].k; in const2val() 83 int luaK_exp2const (FuncState *fs, const expdesc *e, TValue *v) { in luaK_exp2const() argument [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/archive/zip/ |
D | struct.go | 2 // Use of this source code is governed by a BSD-style 25 "io/fs" 42 dataDescriptorSignature = 0x08074b50 // de-facto standard; required by OS X Finder 43 fileHeaderLen = 30 // + filename + extra 44 directoryHeaderLen = 46 // + filename + extra + comment 49 directory64EndLen = 56 // + extra 63 uint16max = (1 << 16) - 1 64 uint32max = (1 << 32) - 1 66 // Extra header IDs. 69 // IDs above that range are defined by third-party vendors. [all …]
|
D | reader.go | 2 // Use of this source code is governed by a BSD-style 15 "io/fs" 65 zip64 bool // zip64 extended information extra field presence 70 // If any file inside the archive uses a non-local name 75 // Programs that want to accept non-local names can ignore 99 // If any file inside the archive uses a non-local name 104 // Programs that want to accept non-local names can ignore 128 // indicate it contains up to 1 << 128 - 1 files. Since each file has a 131 …if end.directorySize < uint64(size) && (uint64(size)-end.directorySize)/30 >= end.directoryRecords… 202 // DataOffset returns the offset of the file's possibly-compressed [all …]
|
D | writer.go | 2 // Use of this source code is governed by a BSD-style 14 "io/fs" 21 errLongExtra = errors.New("zip: FileHeader.Extra too long") 33 // testHookCloseSizeOffset if non-nil is called with the size 66 // SetComment sets the end-of-central-directory comment field. 106 // zip64 extra header should be used. 110 // append a zip64 extra block to Extra 118 h.Extra = append(h.Extra, buf[:]...) 125 b.uint16(uint16(len(h.Extra))) 140 if _, err := w.cw.Write(h.Extra); err != nil { [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/flag/ |
D | flag_test.go | 2 // Use of this source code is governed by a BSD-style 156 if CommandLine.Parse([]string{"-x"}) == nil { 177 extra := "one-extra-argument" 179 "-bool", 180 "-bool2=true", 181 "--int", "22", 182 "--int64", "0x23", 183 "-uint", "24", 184 "--uint64", "25", 185 "-string", "hello", [all …]
|
/aosp_15_r20/external/cronet/third_party/cpu_features/src/test/ |
H A D | cpuinfo_mips_test.cc | 7 // http://www.apache.org/licenses/LICENSE-2.0 60 auto& fs = GetEmptyFilesystem(); in TEST() local 61 fs.CreateFile("/proc/cpuinfo", R"(system type : IMG Pistachio SoC (B0) in TEST() 69 extra interrupt vector : yes in TEST() 94 auto& fs = GetEmptyFilesystem(); in TEST() local 95 fs.CreateFile("/proc/cpuinfo", in TEST() 104 extra interrupt vector : yes in TEST() 121 auto& fs = GetEmptyFilesystem(); in TEST() local 122 fs.CreateFile("/proc/cpuinfo", R"(system type : MIPS-Goldfish in TEST() 131 extra interrupt vector : yes in TEST() [all …]
|
/aosp_15_r20/external/cpu_features/test/ |
H A D | cpuinfo_mips_test.cc | 7 // http://www.apache.org/licenses/LICENSE-2.0 60 auto& fs = GetEmptyFilesystem(); in TEST() local 61 fs.CreateFile("/proc/cpuinfo", R"(system type : IMG Pistachio SoC (B0) in TEST() 69 extra interrupt vector : yes in TEST() 94 auto& fs = GetEmptyFilesystem(); in TEST() local 95 fs.CreateFile("/proc/cpuinfo", in TEST() 104 extra interrupt vector : yes in TEST() 121 auto& fs = GetEmptyFilesystem(); in TEST() local 122 fs.CreateFile("/proc/cpuinfo", R"(system type : MIPS-Goldfish in TEST() 131 extra interrupt vector : yes in TEST() [all …]
|
/aosp_15_r20/external/e2fsprogs/lib/ext2fs/ |
H A D | ext_attr.c | 2 * ext_attr.c --- extended attribute blocks 8 * %Begin-Header% 11 * %End-Header% 28 static errcode_t read_ea_inode_hash(ext2_filsys fs, ext2_ino_t ino, __u32 *hash) in read_ea_inode_hash() argument 33 retval = ext2fs_read_inode(fs, ino, &inode); in read_ea_inode_hash() 55 for (n = 0; n < entry->e_name_len; n++) { in ext2fs_ext_attr_hash_entry() 57 (hash >> (8*sizeof(hash) - NAME_HASH_SHIFT)) ^ in ext2fs_ext_attr_hash_entry() 61 /* The hash needs to be calculated on the data in little-endian. */ in ext2fs_ext_attr_hash_entry() 62 if (entry->e_value_inum == 0 && entry->e_value_size != 0) { in ext2fs_ext_attr_hash_entry() 64 for (n = (entry->e_value_size + EXT2_EXT_ATTR_ROUND) >> in ext2fs_ext_attr_hash_entry() [all …]
|
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
H A D | ARMSubtarget.cpp | 1 //===-- ARMSubtarget.cpp - ARM Subtarget Information ----------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 43 #define DEBUG_TYPE "arm-subtarget" 50 UseFusedMulOps("arm-use-mulops", 62 cl::values(clEnumValN(DefaultIT, "arm-default-it", 64 clEnumValN(RestrictedIT, "arm-restrict-it", 66 clEnumValN(NoRestrictedIT, "arm-no-restrict-it", 69 /// ForceFastISel - Use the fast-isel, even for subtargets where it is not [all …]
|
/aosp_15_r20/external/skia/modules/canvaskit/npm_build/ |
H A D | package-lock.json | 2 "name": "canvaskit-wasm", 8 "name": "canvaskit-wasm", 10 "license": "BSD-3-Clause", 12 "@definitelytyped/header-parser": "0.0.121", 18 "node_modules/@definitelytyped/header-parser": { 20 …"resolved": "https://registry.npmjs.org/@definitelytyped/header-parser/-/header-parser-0.0.121.tgz… 21 …"integrity": "sha512-78HY1J+QiwZPXFZQWb9gPQPxAMNg6/1e4gl7gL/8dmd17vVWLi3AGrLJoG8Pn1p8d7MF2rlPw/2AE… 24 "@definitelytyped/typescript-versions": "^0.0.121", 29 "node_modules/@definitelytyped/typescript-versions": { 31 …ed": "https://registry.npmjs.org/@definitelytyped/typescript-versions/-/typescript-versions-0.0.12… [all …]
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/ARM/ |
H A D | ARMSubtarget.cpp | 1 //===-- ARMSubtarget.cpp - ARM Subtarget Information ----------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 44 #define DEBUG_TYPE "arm-subtarget" 51 UseFusedMulOps("arm-use-mulops", 61 cl::values(clEnumValN(DefaultIT, "arm-default-it", 63 clEnumValN(RestrictedIT, "arm-restrict-it", 66 /// ForceFastISel - Use the fast-isel, even for subtargets where it is not 69 ForceFastISel("arm-force-fast-isel", [all …]
|
/aosp_15_r20/system/extras/checkpoint_gc/ |
H A D | checkpoint_gc.sh | 10 # http://www.apache.org/licenses/LICENSE-2.0 19 # This script will run as an pre-checkpointing cleanup for mounting f2fs 41 if [ ! -f /dev/sys/fs/by-name/userdata/gc_urgent ]; then 45 # If we have sufficient free segments, it doesn't matter how much extra 52 if [ -f /dev/sys/fs/by-name/userdata/unusable ]; then 57 read START < /dev/sys/fs/by-name/userdata/unusable 62 read START < /dev/sys/fs/by-name/userdata/dirty_segments 65 log -pi -t checkpoint_gc Turning on GC for userdata 67 read OLD_SLEEP < /dev/sys/fs/by-name/userdata/gc_urgent_sleep_time || \ 68 { log -pw -t checkpoint_gc Cannot read gc_urgent_sleep_time; exit 1; } [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/distpack/ |
D | pack.go | 2 // Use of this source code is governed by a BSD-style 8 // - a binary distribution (tgz or zip) for the current GOOS and GOARCH 9 // - a source distribution that is independent of GOOS/GOARCH 10 // - the module mod, info, and zip files for a distribution in module form 13 // Distpack is typically invoked by the -distpack flag to make.bash. 14 // A cross-compiled distribution for goos/goarch can be built using: 16 // GOOS=goos GOARCH=goarch ./make.bash -distpack 20 // ./make.bash -distpack 21 // mkdir -p /tmp/goproxy/golang.org/toolchain/ 22 // ln -sf $(pwd)/../pkg/distpack /tmp/goproxy/golang.org/toolchain/@v [all …]
|
/aosp_15_r20/external/mesa3d/src/gallium/drivers/svga/ |
H A D | svga_tgsi_vgpu10.c | 2 * Copyright (c) 1998-2024 Broadcom. All Rights Reserved. 5 * SPDX-License-Identifier: MIT 11 * TGSI -> VGPU10 shader translation. 58 * one or more user-defined clip planes are enabled. We 59 * generate extra code to emit clip distances. 88 e->registerIndex = index; in set_shader_signature_entry() 89 e->semanticName = sgnName; in set_shader_signature_entry() 90 e->mask = mask; in set_shader_signature_entry() 91 e->componentType = compType; in set_shader_signature_entry() 92 e->minPrecision = minPrecision; in set_shader_signature_entry() [all …]
|
H A D | svga_state_constants.c | 2 * Copyright (c) 2008-2024 Broadcom. All Rights Reserved. 5 * SPDX-License-Identifier: MIT 37 if (images[shader][i].desc.resource->target == PIPE_BUFFER) { in svga_get_image_size_constant() 39 *dest_u++ = images[shader][i].desc.resource->width0 / bytes_per_element; in svga_get_image_size_constant() 42 *dest_u++ = images[shader][i].desc.resource->width0; in svga_get_image_size_constant() 44 if (images[shader][i].desc.resource->target == PIPE_TEXTURE_1D_ARRAY) in svga_get_image_size_constant() 45 *dest_u++ = images[shader][i].desc.resource->array_size; in svga_get_image_size_constant() 47 *dest_u++ = images[shader][i].desc.resource->height0; in svga_get_image_size_constant() 49 if (images[shader][i].desc.resource->target == PIPE_TEXTURE_2D_ARRAY) in svga_get_image_size_constant() 50 *dest_u++ = images[shader][i].desc.resource->array_size; in svga_get_image_size_constant() [all …]
|
/aosp_15_r20/external/clang/docs/ |
H A D | LibASTMatchersTutorial.rst | 5 This document is intended to show how to build a useful source-to-source 24 .. code-block:: console 26 mkdir ~/clang-llvm && cd ~/clang-llvm 31 git clone http://llvm.org/git/clang-tools-extra.git extra 37 .. code-block:: console 39 cd ~/clang-llvm 46 cd ~/clang-llvm 56 .. code-block:: console 58 cd ~/clang-llvm 60 cmake -G Ninja ../llvm -DLLVM_BUILD_TESTS=ON # Enable tests; default is off. [all …]
|
/aosp_15_r20/external/mesa3d/src/gallium/auxiliary/draw/ |
H A D | draw_pipe_aaline.c | 3 * Copyright 2007-2018 VMware, Inc. 20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. 29 * AA line stage: AA lines are converted triangles (with extra generic) 59 * Subclass of pipe_shader_state to carry extra fragment shader info. 88 struct aaline_fragment_shader *fs; member 124 if (decl->Declaration.File == TGSI_FILE_OUTPUT && in aa_transform_decl() 125 decl->Semantic.Name == TGSI_SEMANTIC_COLOR && in aa_transform_decl() 126 decl->Semantic.Index == 0) { in aa_transform_decl() 127 aactx->colorOutput = decl->Range.First; in aa_transform_decl() 129 else if (decl->Declaration.File == TGSI_FILE_INPUT) { in aa_transform_decl() [all …]
|
/aosp_15_r20/build/soong/zip/ |
H A D | zip.go | 7 // http://www.apache.org/licenses/LICENSE-2.0 44 // Sha256HeaderID is a custom Header ID for the `extra` field in 48 // Sha256HeaderSignature is the signature to verify that the extra 92 fs pathtools.FileSystem member 99 fs: pathtools.OsFs, 152 f, err := b.fs.Open(name) 177 f, err := b.fs.Open(name) 255 fs pathtools.FileSystem member 309 fs: args.Filesystem, 313 if z.fs == nil { [all …]
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/libcxx/input.output/filesystems/class.path/path.member/path.native.obs/ |
H A D | string_alloc.pass.cpp | 1 //===----------------------------------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 // UNSUPPORTED: availability-filesystem-missing 12 // These tests require locale for non-char paths 13 // UNSUPPORTED: no-localization 33 namespace fs = std::filesystem; 41 using namespace fs; in doShortStringTest() 50 // extra allocations. in doShortStringTest() 54 // no extra allocations should be done. in doShortStringTest() [all …]
|
/aosp_15_r20/device/google/cuttlefish/shared/minidroid/ |
D | init.rc | 13 # TODO(b/267320398): this file does not exist in -user builds, but init can 19 # Cgroups are mounted right before early-init using list from /etc/cgroups.json 20 on early-init 21 # set RLIMIT_NICE to allow priorities from 19 to -20 28 mkdir /mnt/extra-apk 0755 root root 43 # create an empty ld.config.txt before running any non-static executables 54 start apexd-vm 57 restorecon /mnt/extra-apk 64 perform_apex_config --bootstrap 71 setprop ro.debuggable ${ro.boot.microdroid.debuggable:-0} [all …]
|
/aosp_15_r20/external/e2fsprogs/tests/m_minrootdir/ |
H A D | expect | 1 create fs 32 Required extra isize: 32 33 Desired extra isize: 32 38 Group 0: (Blocks 1-8192) 39 Primary superblock at 1, Group descriptors at 2-2 42 Inode table at 7-134 (+6) 44 Free blocks: 317-8192 45 Free inodes: 19-512 46 Group 1: (Blocks 8193-16383) [INODE_UNINIT] 47 Backup superblock at 8193, Group descriptors at 8194-8194 [all …]
|
/aosp_15_r20/build/soong/java/ |
H A D | testing.go | 7 // http://www.apache.org/licenses/LICENSE-2.0 51 // Additional files needed in tests that disallow non-existent source files. 57 "build/soong/java/metalava/Android.bp": []byte(`filegroup {name: "metalava-config-files"}`), 60 // Required to generate Java used-by API coverage 63 "prebuilts/cmdline-tools/AndroidGlobalLintChecker.jar": nil, 71 // Additional files needed when test disallows non-existent source. 73 // Needed for framework-res 81 defaultJavaDir + "/api/system-current.txt": nil, 82 defaultJavaDir + "/api/system-removed.txt": nil, 83 defaultJavaDir + "/api/test-current.txt": nil, [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/date_time/include/boost/date_time/ |
D | time_parsing.hpp | 37 /*! Expected format for string is "[-]h[h][:mm][:ss][.fff]". 39 * precision of the time duration type then the extra digits are 43 * string is a '-', all other '-' will be treated as delimiters. 44 * Accepted delimiters are "-:,.". 53 bool is_neg = (s.at(0) == '-'); in str_from_delimited_time_duration() 54 boost::int64_t fs=0; in str_from_delimited_time_duration() local 66 char_type sep_chars[5] = {'-',':',',','.'}; in str_from_delimited_time_duration() 84 int digits = static_cast<int>(beg->length()); in str_from_delimited_time_duration() 91 time_duration td(hour,min,sec,fs); in str_from_delimited_time_duration() 96 fs = _atoi64(beg->substr(0, precision).c_str()); in str_from_delimited_time_duration() [all …]
|
/aosp_15_r20/external/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUTargetMachine.cpp | 1 //===-- AMDGPUTargetMachine.cpp - TargetMachine for hw codegen targets-----===// 8 //===----------------------------------------------------------------------===// 14 //===----------------------------------------------------------------------===// 47 "r600-ir-structurize", 52 "amdgpu-sroa", 58 "r600-if-convert", 65 "amdgpu-load-store-vectorizer", 112 // 32-bit pointers. in computeDataLayout() 113 return "e-p:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128" in computeDataLayout() 114 "-v192:256-v256:256-v512:512-v1024:1024-v2048:2048-n32:64"; in computeDataLayout() [all …]
|