/third_party/gn/tools/ |
H A D | find_unreachable.py | 26 reachable = set() 38 source_targets = set(targets) 40 source_targets -= set(graph[target]['deps']) 68 all = set(targets_graph.keys())
|
/third_party/jerryscript/tests/jerry/es2015/ |
H A D | function-scope2.js | 64 function h(a, get = () => a, set = (v) => a = v) { 72 set(3) 80 function i([a], get = () => a, set = (v) => a = v) { 91 set(3)
|
/third_party/node/test/async-hooks/ |
H A D | test-async-await.js | 31 promisesInitState.set(asyncId, 'inited'); 39 promisesExecutionState.set(asyncId, 'before'); 53 promisesExecutionState.set(asyncId, 'after'); 60 promisesInitState.set(asyncId, 'resolved');
|
/third_party/node/test/fixtures/wpt/encoding/streams/ |
H A D | decode-attributes.any.js | 28 }, `setting fatal to '${falseValue}' should set the attribute to false`); 33 }, `setting ignoreBOM to '${falseValue}' should set the attribute to false`); 40 }, `setting fatal to '${trueValue}' should set the attribute to true`); 45 }, `setting ignoreBOM to '${trueValue}' should set the attribute to true`);
|
/third_party/musl/src/locale/ |
H A D | catgets.c | 25 const char *set = bsearch(&set_id_be, sets, nsets, 12, cmp); in catgets() local 26 if (!set) { in catgets() 30 uint32_t nmsgs = V(set+4); in catgets() 31 msgs += 12*V(set+8); in catgets()
|
/third_party/musl/src/exit/ |
H A D | abort.c | 53 sigset_t set, pending; in abort() local 54 sigemptyset(&set); in abort() 55 sigaddset(&set, SIGABRT); in abort() 58 __syscall(SYS_rt_sigprocmask, SIG_UNBLOCK, &set, 0, _NSIG / 8); in abort()
|
/third_party/ltp/testcases/kernel/syscalls/rt_sigtimedwait/ |
H A D | rt_sigtimedwait01.c | 7 static int my_rt_sigtimedwait(const sigset_t * set, siginfo_t * info, in my_rt_sigtimedwait() argument 11 return tst_syscall(__NR_rt_sigtimedwait, set, info, timeout, _NSIG/8); in my_rt_sigtimedwait() 15 static int my_rt_sigtimedwait_time64(const sigset_t * set, siginfo_t * info, in my_rt_sigtimedwait_time64() argument 19 return tst_syscall(__NR_rt_sigtimedwait_time64, set, info, timeout, _NSIG/8); in my_rt_sigtimedwait_time64()
|
/third_party/node/deps/v8/src/heap/cppgc/ |
H A D | remembered-set.h | 8 #include <set> 59 std::set<void*> remembered_slots_; 60 std::set<HeapObjectHeader*> remembered_source_objects_; 61 std::set<WeakCallbackItem, decltype(compare_parameter)>
|
/third_party/node/deps/v8/src/objects/ |
H A D | regexp-match-info-inl.h | 29 set(kNumberOfCapturesIndex, Smi::FromInt(value)); in SetNumberOfCaptureRegisters() 39 set(kLastSubjectIndex, value, mode); in SetLastSubject() 49 set(kLastInputIndex, value, mode); in SetLastInput() 60 set(kFirstCaptureIndex + i, Smi::FromInt(value)); in SetCapture()
|
/third_party/musl/libc-test/src/functionalext/supplement/signal/ |
H A D | sigsuspend.c | 35 sigset_t set; in sigsuspend_0100() local 36 sigemptyset(&set); in sigsuspend_0100() 39 sigaddset(&set, sig); in sigsuspend_0100() 40 sigprocmask(SIG_BLOCK, &set, NULL); in sigsuspend_0100()
|
/third_party/python/Include/ |
H A D | setobject.h | 16 PyAPI_FUNC(int) PySet_Add(PyObject *set, PyObject *key); 17 PyAPI_FUNC(int) PySet_Clear(PyObject *set); variable 19 PyAPI_FUNC(int) PySet_Discard(PyObject *set, PyObject *key); 20 PyAPI_FUNC(PyObject *) PySet_Pop(PyObject *set); variable
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | ImageFunctionHLSL.h | 12 #include <set> 34 const std::set<std::string> &getUsedImage2DFunctionNames() const in getUsedImage2DFunctionNames() 89 using ImageFunctionSet = std::set<ImageFunction>; 91 std::set<std::string> mUsedImage2DFunctionNames;
|
H A D | TranslatorHLSL.h | 27 const std::set<std::string> *getSlowCompilingUniformBlockSet() const; 32 const std::set<std::string> *getUsedImage2DFunctionNames() const; 49 std::set<std::string> mUsedImage2DFunctionNames; 51 std::set<std::string> mSlowCompilingUniformBlockSet;
|
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/ |
H A D | call_graph.h | 19 #include <set> 41 const std::set<uint32_t>& GetDirectCallees(uint32_t function_id) const { in GetDirectCallees() 47 std::set<uint32_t> GetIndirectCallees(uint32_t function_id) const; 92 std::map<uint32_t, std::set<uint32_t>> call_graph_edges_;
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
H A D | call_graph.h | 19 #include <set> 41 const std::set<uint32_t>& GetDirectCallees(uint32_t function_id) const { in GetDirectCallees() 47 std::set<uint32_t> GetIndirectCallees(uint32_t function_id) const; 92 std::map<uint32_t, std::set<uint32_t>> call_graph_edges_;
|
/third_party/spirv-tools/source/fuzz/ |
H A D | call_graph.h | 19 #include <set> 41 const std::set<uint32_t>& GetDirectCallees(uint32_t function_id) const { in GetDirectCallees() 47 std::set<uint32_t> GetIndirectCallees(uint32_t function_id) const; 92 std::map<uint32_t, std::set<uint32_t>> call_graph_edges_;
|
/third_party/typescript/tests/baselines/reference/ |
H A D | superInObjectLiterals_ES6.js | 14 set prop(value) { 46 set prop(value) { 75 set prop(value) {
105 set prop(value) {
|
H A D | classStaticBlock22(target=es2022).js | 50 set accessor(v: any) { 64 static set accessor(v: any) { 126 set accessor(v) {
140 static set accessor(v) {
|
H A D | classStaticBlock22(target=esnext).js | 50 set accessor(v: any) { 64 static set accessor(v: any) { 126 set accessor(v) {
140 static set accessor(v) {
|
H A D | collisionThisExpressionAndLocalVarInAccessors.js | 13 set a(val: number) { 35 set a(val: number) { 61 set: function (val) {
89 set: function (val) {
|
H A D | noCollisionThisExpressionAndLocalVarInAccessors.js | 13 set a(val: number) { 35 set a(val: number) { 60 set: function (val) {
86 set: function (val) {
|
/third_party/protobuf/src/google/protobuf/compiler/objectivec/ |
H A D | objectivec_message_field.h | 57 virtual void DetermineForwardDeclarations(std::set<string>* fwd_decls) const; 58 virtual void DetermineObjectiveCClassDefinitions(std::set<string>* fwd_decls) const; 74 virtual void DetermineForwardDeclarations(std::set<string>* fwd_decls) const; 75 virtual void DetermineObjectiveCClassDefinitions(std::set<string>* fwd_decls) const;
|
/third_party/protobuf/python/docs/ |
H A D | make.bat | 8 set SPHINXBUILD=sphinx-build
10 set SOURCEDIR=.
11 set BUILDDIR=_build
19 echo.installed, then set the SPHINXBUILD environment variable to point
|
/kernel/linux/linux-6.6/arch/s390/kernel/ |
H A D | perf_cpum_cf.c | 59 static inline int ctr_stcctm(enum cpumf_ctr_set set, u64 range, u64 *dest) in ctr_stcctm() argument 61 switch (set) { in ctr_stcctm() 86 unsigned char start[PAGE_SIZE]; /* Counter set at event add */ 87 unsigned char stop[PAGE_SIZE]; /* Counter set at event delete */ 88 unsigned char data[PAGE_SIZE]; /* Counter set at /dev/hwctr */ 89 unsigned int sets; /* # Counter set saved in memory */ 319 #define CF_DIAG_CTRSET_DEF 0xfeef /* Counter set header mark */ 324 * Each counter set starts with an eight byte header consisting of: 326 * - a one byte counter set number 327 * - a two byte counter set siz 348 unsigned int set:16; /* 16-31 Counter set identifier */ global() member 589 int set = CPUMF_CTR_SET_MAX; get_counter_set() local 605 validate_ctr_version(const u64 config, enum cpumf_ctr_set set) validate_ctr_version() argument 740 enum cpumf_ctr_set set; __hw_perf_event_init() local 1526 int set, set_size; cfset_cpu_read() local [all...] |
/kernel/linux/linux-5.10/drivers/md/bcache/ |
H A D | bset.c | 21 void bch_dump_bset(struct btree_keys *b, struct bset *i, unsigned int set) in bch_dump_bset() argument 28 pr_err("block %u key %u/%u: ", set, in bch_dump_bset() 49 bch_dump_bset(b, b->set[i].data, in bch_dump_bucket() 50 bset_sector_offset(b, b->set[i].data)); in bch_dump_bucket() 294 struct bset_tree *t = b->set; in bch_btree_keys_free() 319 struct bset_tree *t = b->set; in bch_btree_keys_alloc() 359 * b->set[0].data is allocated in bch_btree_keys_alloc(), so we in bch_btree_keys_init() 360 * don't have to initiate b->set[].size and b->set[].data here in bch_btree_keys_init() 510 * in one cacheline in t->set (BSET_CACHELIN [all...] |