Searched refs:csa (Results 1 - 5 of 5) sorted by relevance
/third_party/musl/src/linux/ |
H A D | clone.c | 18 struct clone_start_args *csa = arg; in clone_start() local 20 __restore_sigs(&csa->sigmask); in clone_start() 21 return csa->func(csa->arg); in clone_start() 26 struct clone_start_args csa; in clone() local 53 __block_all_sigs(&csa.sigmask); in clone() 58 csa.func = func; in clone() 59 csa.arg = arg; in clone() 60 int ret = __clone(clone_start, stack, flags, &csa, ptid, tls, ctid); in clone() 63 __restore_sigs(&csa in clone() [all...] |
/third_party/ffmpeg/libavcodec/mips/ |
H A D | compute_antialias_fixed.h | 62 const int32_t *csa; in compute_antialias_mips_fixed() local 83 csa = &csa_table[0][0]; in compute_antialias_mips_fixed() 91 "lw %[temp_reg1], 0*4(%[csa]) \n\t" in compute_antialias_mips_fixed() 92 "lw %[temp_reg2], 2*4(%[csa]) \n\t" in compute_antialias_mips_fixed() 94 "lw %[temp_reg3], 3*4(%[csa]) \n\t" in compute_antialias_mips_fixed() 99 "lw %[temp_reg4], 4*4(%[csa]) \n\t" in compute_antialias_mips_fixed() 105 "lw %[temp_reg5], 6*4(%[csa]) \n\t" in compute_antialias_mips_fixed() 110 "lw %[temp_reg6], 7*4(%[csa]) \n\t" in compute_antialias_mips_fixed() 123 "lw %[temp_reg1], 8*4(%[csa]) \n\t" in compute_antialias_mips_fixed() 131 "lw %[temp_reg2], 10*4(%[csa]) \ in compute_antialias_mips_fixed() [all...] |
H A D | compute_antialias_float.h | 66 const float *csa = &csa_table[0][0]; in compute_antialias_mips_float() local 89 "lwc1 %[in2], 0(%[csa]) \t\n" in compute_antialias_mips_float() 90 "lwc1 %[in3], 1*4(%[csa]) \t\n" in compute_antialias_mips_float() 93 "lwc1 %[in6], 4*4(%[csa]) \t\n" in compute_antialias_mips_float() 96 "lwc1 %[in7], 5*4(%[csa]) \t\n" in compute_antialias_mips_float() 107 "lwc1 %[in2], 8*4(%[csa]) \t\n" in compute_antialias_mips_float() 110 "lwc1 %[in3], 9*4(%[csa]) \t\n" in compute_antialias_mips_float() 114 "lwc1 %[in6], 12*4(%[csa]) \t\n" in compute_antialias_mips_float() 116 "lwc1 %[in7], 13*4(%[csa]) \t\n" in compute_antialias_mips_float() 127 "lwc1 %[in2], 16*4(%[csa]) \ in compute_antialias_mips_float() [all...] |
/third_party/node/deps/v8/src/codegen/ |
H A D | code-stub-assembler.h | 231 #define CSA_CHECK(csa, x) \ 232 (csa)->Check([&]() -> TNode<BoolT> { return x; }, #x, __FILE__, __LINE__) 234 #define CSA_CHECK(csa, x) (csa)->FastCheck(x) 254 // CSA_DCHECK(csa, <condition>, <extra values to print...>) 256 #define CSA_DCHECK(csa, condition_node, ...) \ 257 (csa)->Dcheck(condition_node, #condition_node, __FILE__, __LINE__, \ 260 // CSA_DCHECK_BRANCH(csa, [](Label* ok, Label* not_ok) {...}, 263 #define CSA_DCHECK_BRANCH(csa, gen, ...) \ 264 (csa) [all...] |
H A D | code-stub-assembler.cc | 4017 TNode<FixedArrayBase> InnerAllocateElements(CodeStubAssembler* csa, 4020 return csa->UncheckedCast<FixedArrayBase>( 4021 csa->BitcastWordToTagged(csa->IntPtrAdd( 4022 csa->BitcastTaggedToWord(js_array), csa->IntPtrConstant(offset)))); 5382 TNode<HeapObject> InnerAllocateMemento(CodeStubAssembler* csa, 5385 return csa->UncheckedCast<HeapObject>(csa->BitcastWordToTagged( 5386 csa [all...] |
Completed in 10 milliseconds