/third_party/node/deps/openssl/openssl/crypto/modes/asm/ |
H A D | ghash-c64xplus.pl | 24 # code compiled with TI's cl6x 6.0 with -mv6400+ -o2 flags. We are 42 $code.=<<___; 162 $code.=<<___; 246 print $code;
|
/third_party/python/Tools/scripts/ |
H A D | umarshal.py | 182 code = self.r_byte() 183 flag = code & FLAG_REF 184 type = code & ~FLAG_REF 185 # print(" "*self.level + f"{code} {flag} {type} {chr(type)!r}")
|
/third_party/pulseaudio/src/modules/rtp/ |
H A D | module-rtp-send.c | 121 static int source_output_process_msg(pa_msgobject *o, int code, void *data, int64_t offset, pa_memchunk *chunk) { in source_output_process_msg() argument 125 switch (code) { in source_output_process_msg() 134 return pa_source_output_process_msg(o, code, data, offset, chunk); in source_output_process_msg()
|
/third_party/pulseaudio/src/modules/ |
H A D | module-null-sink.c | 94 int code, in sink_process_msg() 101 switch (code) { in sink_process_msg() 112 return pa_sink_process_msg(o, code, data, offset, chunk); in sink_process_msg() 92 sink_process_msg( pa_msgobject *o, int code, void *data, int64_t offset, pa_memchunk *chunk) sink_process_msg() argument
|
H A D | module-remap-sink.c | 74 static int sink_process_msg(pa_msgobject *o, int code, void *data, int64_t offset, pa_memchunk *chunk) { in sink_process_msg() argument 77 switch (code) { in sink_process_msg() 102 return pa_sink_process_msg(o, code, data, offset, chunk); in sink_process_msg()
|
H A D | module-remap-source.c | 81 static int source_process_msg_cb(pa_msgobject *o, int code, void *data, int64_t offset, pa_memchunk *chunk) { in source_process_msg_cb() argument 84 switch (code) { in source_process_msg_cb() 110 return pa_source_process_msg(o, code, data, offset, chunk); in source_process_msg_cb()
|
/third_party/pulseaudio/src/modules/jack/ |
H A D | module-jack-sink.c | 118 static int sink_process_msg(pa_msgobject *o, int code, void *data, int64_t offset, pa_memchunk *memchunk) { in sink_process_msg() argument 121 switch (code) { in sink_process_msg() 203 return pa_sink_process_msg(o, code, data, offset, memchunk); in sink_process_msg()
|
H A D | module-jack-source.c | 104 static int source_process_msg(pa_msgobject *o, int code, void *data, int64_t offset, pa_memchunk *chunk) { in source_process_msg() argument 107 switch (code) { in source_process_msg() 153 return pa_source_process_msg(o, code, data, offset, chunk); in source_process_msg()
|
/third_party/openssl/crypto/modes/asm/ |
H A D | ghash-c64xplus.pl | 24 # code compiled with TI's cl6x 6.0 with -mv6400+ -o2 flags. We are 42 $code.=<<___; 162 $code.=<<___; 246 print $code;
|
/third_party/skia/third_party/externals/spirv-tools/source/val/ |
H A D | validate.cpp | 402 return spvValidateBinary(context, binary->code, binary->wordCount, in spvValidate() 443 binary->code, binary->wordCount, in spvValidateWithOptions() 447 hijack_context, binary->code, binary->wordCount, pDiagnostic, &vstate); in spvValidateWithOptions()
|
/third_party/openssl/providers/implementations/rands/seeding/ |
H A D | rand_unix.c | 130 * uneven execution speed of the code (due to factors such as cache misses, 143 short int code; in ossl_pool_acquire_entropy() local 169 s$sleep(&duration, &code); in ossl_pool_acquire_entropy() 173 s$sleep2(&duration, &code); in ossl_pool_acquire_entropy() 233 * variable sizes up to 256 byte. The code below would not work properly in sysctl_random()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/ |
H A D | validate.cpp | 402 return spvValidateBinary(context, binary->code, binary->wordCount, in spvValidate() 443 binary->code, binary->wordCount, in spvValidateWithOptions() 447 hijack_context, binary->code, binary->wordCount, pDiagnostic, &vstate); in spvValidateWithOptions()
|
/third_party/skia/third_party/externals/oboe/docs/reference/search/ |
H A D | search.js | 3 JavaScript code in this file. 22 for the JavaScript code in this file 335 var code = searchValue.toLowerCase().charCodeAt(0); 337 if ( 0xD800 <= code && code <= 0xDBFF && searchValue > 1) // surrogate pair
|
/third_party/skia/third_party/externals/brotli/c/enc/ |
H A D | hash.h | 223 size_t code = self->length_and_code & 31; in BackwardMatchLengthCode() local 224 return code ? code : BackwardMatchLength(self); in BackwardMatchLengthCode()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-ot-cff1-table.cc | 50 /* SID to code */ 65 /* SID to code */ 195 /* code to SID */ 260 hb_codepoint_t OT::cff1::lookup_standard_encoding_for_sid (hb_codepoint_t code) in lookup_standard_encoding_for_sid() argument 262 if (code < ARRAY_LENGTH (standard_encoding_to_sid)) in lookup_standard_encoding_for_sid() 263 return (hb_codepoint_t)standard_encoding_to_sid[code]; in lookup_standard_encoding_for_sid() 412 /* XXX Remove check when this code moves to .hh file. */ in get_extents() 561 /* XXX Remove check when this code moves to .hh file. */ in get_path()
|
/third_party/vixl/src/aarch32/ |
H A D | instructions-aarch32.cc | 7 // * Redistributions of source code must retain the above copyright notice, 109 int code = 0; in PrintRegisterList() local 117 os << Register(code); in PrintRegisterList() 120 code++; in PrintRegisterList()
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | cms.rs | 480 let code = error_array[0].code(); in cms_sign_verify_error() 481 assert_eq!(ffi::ERR_GET_REASON(code), CMS_R_CERTIFICATE_VERIFY_ERROR); in cms_sign_verify_error()
|
/third_party/spirv-tools/source/val/ |
H A D | validate.cpp | 416 return spvValidateBinary(context, binary->code, binary->wordCount, in spvValidate() 457 binary->code, binary->wordCount, in spvValidateWithOptions() 461 hijack_context, binary->code, binary->wordCount, pDiagnostic, &vstate); in spvValidateWithOptions()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/ |
H A D | dpp.h | 135 char *code; member 144 unsigned int t; /* number of failures on code use */ 465 const char *code); 471 const char *code,
|
/third_party/node/deps/openssl/openssl/crypto/bn/asm/ |
H A D | armv8-mont.pl | 28 # compiler-generated code. Recall that compiler is instructed to use 38 # comparison to compiler-generated code. On Cortex-A57 improvement 69 $code.=<<___; 308 $code.=<<___; 376 $code.=<<___; 396 $code.=<<___; 414 $code.=<<___; 437 $code.=<<___; 460 $code.=<<___; 473 $code [all...] |
/third_party/openssl/crypto/bn/asm/ |
H A D | armv8-mont.pl | 28 # compiler-generated code. Recall that compiler is instructed to use 38 # comparison to compiler-generated code. On Cortex-A57 improvement 69 $code.=<<___; 308 $code.=<<___; 376 $code.=<<___; 396 $code.=<<___; 414 $code.=<<___; 437 $code.=<<___; 460 $code.=<<___; 473 $code [all...] |
/third_party/node/deps/v8/src/builtins/mips/ |
H A D | builtins-mips.cc | 2 // Use of this source code is governed by a BSD-style license that can be 8 #include "src/codegen/code-factory.h" 325 // Unreachable code. in Generate_JSConstructStubGeneric() 481 // returns control to the code after the bal(&invoke) above, which in Generate_JSEntryVariant() 609 // Invoke the code. in Generate_JSEntryTrampolineHelper() 635 static void AssertCodeIsBaseline(MacroAssembler* masm, Register code, in AssertCodeIsBaseline() argument 637 DCHECK(!AreAliased(code, scratch)); in AssertCodeIsBaseline() 638 // Verify that the code kind is baseline code via the CodeKind. in AssertCodeIsBaseline() 639 __ lw(scratch, FieldMemOperand(code, Cod in AssertCodeIsBaseline() 1718 int code = config->GetAllocatableGeneralCode(i); Generate_ContinueToBuiltinHelper() local 2045 Generate_CallOrConstructVarargs(MacroAssembler* masm, Handle<Code> code) Generate_CallOrConstructVarargs() argument 2107 Generate_CallOrConstructForwardVarargs(MacroAssembler* masm, CallOrConstructMode mode, Handle<Code> code) Generate_CallOrConstructForwardVarargs() argument 3850 int code = config->GetAllocatableDoubleCode(i); Generate_DeoptimizationEntry() local 3922 int code = config->GetAllocatableDoubleCode(i); Generate_DeoptimizationEntry() local 3991 int code = config->GetAllocatableDoubleCode(i); Generate_DeoptimizationEntry() local [all...] |
/third_party/node/deps/v8/src/builtins/mips64/ |
H A D | builtins-mips64.cc | 2 // Use of this source code is governed by a BSD-style license that can be 8 #include "src/codegen/code-factory.h" 331 static void AssertCodeIsBaseline(MacroAssembler* masm, Register code, in AssertCodeIsBaseline() argument 333 DCHECK(!AreAliased(code, scratch)); in AssertCodeIsBaseline() 334 // Verify that the code kind is baseline code via the CodeKind. in AssertCodeIsBaseline() 335 __ Ld(scratch, FieldMemOperand(code, Code::kFlagsOffset)); in AssertCodeIsBaseline() 656 // returns control to the code after the bal(&invoke) above, which in Generate_JSEntryVariant() 787 // Invoke the code. in Generate_JSEntryTrampolineHelper() 818 // Store code entr in ReplaceClosureCodeWithOptimizedCode() 1723 int code = config->GetAllocatableGeneralCode(i); Generate_ContinueToBuiltinHelper() local 2090 Generate_CallOrConstructVarargs(MacroAssembler* masm, Handle<Code> code) Generate_CallOrConstructVarargs() argument 2160 Generate_CallOrConstructForwardVarargs(MacroAssembler* masm, CallOrConstructMode mode, Handle<Code> code) Generate_CallOrConstructForwardVarargs() argument 3429 int code = config->GetAllocatableDoubleCode(i); Generate_DeoptimizationEntry() local 3502 int code = config->GetAllocatableDoubleCode(i); Generate_DeoptimizationEntry() local 3570 int code = config->GetAllocatableDoubleCode(i); Generate_DeoptimizationEntry() local [all...] |
/third_party/node/deps/v8/src/builtins/ia32/ |
H A D | builtins-ia32.cc | 2 // Use of this source code is governed by a BSD-style license that can be 11 #include "src/codegen/code-factory.h" 550 // Invoke the code. in Generate_JSEntryTrampolineHelper() 557 // context and the function left on the stack by the code in Generate_JSEntryTrampolineHelper() 593 static void AssertCodeIsBaseline(MacroAssembler* masm, Register code, in AssertCodeIsBaseline() argument 595 DCHECK(!AreAliased(code, scratch)); in AssertCodeIsBaseline() 596 // Verify that the code kind is baseline code via the CodeKind. in AssertCodeIsBaseline() 597 __ mov(scratch, FieldOperand(code, Code::kFlagsOffset)); in AssertCodeIsBaseline() 784 // Store the optimized code i in ReplaceClosureCodeWithOptimizedCode() 1852 int code = config->GetAllocatableGeneralCode(i); Generate_ContinueToBuiltinHelper() local 2184 Generate_CallOrConstructVarargs(MacroAssembler* masm, Handle<Code> code) Generate_CallOrConstructVarargs() argument 2278 Generate_CallOrConstructForwardVarargs(MacroAssembler* masm, CallOrConstructMode mode, Handle<Code> code) Generate_CallOrConstructForwardVarargs() argument 3989 int code = config->GetAllocatableDoubleCode(i); Generate_DeoptimizationEntry() local 4046 int code = config->GetAllocatableDoubleCode(i); Generate_DeoptimizationEntry() local 4125 int code = config->GetAllocatableDoubleCode(i); Generate_DeoptimizationEntry() local [all...] |
/third_party/node/deps/v8/src/builtins/loong64/ |
H A D | builtins-loong64.cc | 2 // Use of this source code is governed by a BSD-style license that can be 8 #include "src/codegen/code-factory.h" 331 static void AssertCodeIsBaseline(MacroAssembler* masm, Register code, in AssertCodeIsBaseline() argument 333 DCHECK(!AreAliased(code, scratch)); in AssertCodeIsBaseline() 334 // Verify that the code kind is baseline code via the CodeKind. in AssertCodeIsBaseline() 335 __ Ld_d(scratch, FieldMemOperand(code, Code::kFlagsOffset)); in AssertCodeIsBaseline() 654 // returns control to the code after the bal(&invoke) above, which in Generate_JSEntryVariant() 785 // Invoke the code. in Generate_JSEntryTrampolineHelper() 814 // Store code entr in ReplaceClosureCodeWithOptimizedCode() 1726 int code = config->GetAllocatableGeneralCode(i); Generate_ContinueToBuiltinHelper() local 2093 Generate_CallOrConstructVarargs(MacroAssembler* masm, Handle<Code> code) Generate_CallOrConstructVarargs() argument 2163 Generate_CallOrConstructForwardVarargs(MacroAssembler* masm, CallOrConstructMode mode, Handle<Code> code) Generate_CallOrConstructForwardVarargs() argument 3402 int code = config->GetAllocatableDoubleCode(i); Generate_DeoptimizationEntry() local 3474 int code = config->GetAllocatableDoubleCode(i); Generate_DeoptimizationEntry() local 3542 int code = config->GetAllocatableDoubleCode(i); Generate_DeoptimizationEntry() local [all...] |