/third_party/node/deps/openssl/openssl/crypto/x509/ |
H A D | x_name.c | 390 unsigned char *to, *from; in asn1_string_canon() local 406 from = to; in asn1_string_canon() 418 while (len > 0 && ossl_isspace(*from)) { in asn1_string_canon() 419 from++; in asn1_string_canon() 423 to = from + len; in asn1_string_canon() 436 if (!ossl_isascii(*from)) { in asn1_string_canon() 437 *to++ = *from++; in asn1_string_canon() 441 else if (ossl_isspace(*from)) { in asn1_string_canon() 450 from++; in asn1_string_canon() 453 while (ossl_isspace(*from)); in asn1_string_canon() [all...] |
/third_party/openssl/crypto/dh/ |
H A D | dh_ameth.c | 321 static int int_dh_param_copy(DH *to, const DH *from, int is_x942) in int_dh_param_copy() argument 324 is_x942 = (from->params.q != NULL); in int_dh_param_copy() 325 if (!ossl_ffc_params_copy(&to->params, &from->params)) in int_dh_param_copy() 328 to->length = from->length; in int_dh_param_copy() 346 static int dh_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from) in dh_copy_parameters() argument 353 return int_dh_param_copy(to->pkey.dh, from->pkey.dh, in dh_copy_parameters() 354 from->ameth == &ossl_dhx_asn1_meth); in dh_copy_parameters() 452 static int dh_pkey_export_to(const EVP_PKEY *from, void *to_keydata, in dh_pkey_export_to() argument 456 DH *dh = from->pkey.dh; in dh_pkey_export_to() 542 static int dh_pkey_copy(EVP_PKEY *to, EVP_PKEY *from) in dh_pkey_copy() argument [all...] |
/third_party/openssl/crypto/x509/ |
H A D | x_name.c | 390 unsigned char *to, *from; in asn1_string_canon() local 406 from = to; in asn1_string_canon() 418 while (len > 0 && ossl_isspace(*from)) { in asn1_string_canon() 419 from++; in asn1_string_canon() 423 to = from + len; in asn1_string_canon() 436 if (!ossl_isascii(*from)) { in asn1_string_canon() 437 *to++ = *from++; in asn1_string_canon() 441 else if (ossl_isspace(*from)) { in asn1_string_canon() 450 from++; in asn1_string_canon() 453 while (ossl_isspace(*from)); in asn1_string_canon() [all...] |
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | encrypt.rs | 221 pub fn encrypt(&self, from: &[u8], to: &mut [u8]) -> Result<usize, ErrorStack> { in encrypt() 228 from.as_ptr(), in encrypt() 229 from.len(), in encrypt() 241 pub fn encrypt_len(&self, from: &[u8]) -> Result<usize, ErrorStack> { in encrypt_len() 248 from.as_ptr(), in encrypt_len() 249 from.len(), in encrypt_len() 440 pub fn decrypt(&self, from: &[u8], to: &mut [u8]) -> Result<usize, ErrorStack> { in decrypt() 447 from.as_ptr(), in decrypt() 448 from.len(), in decrypt() 460 pub fn decrypt_len(&self, from [all...] |
/third_party/node/test/parallel/ |
H A D | test-https-agent-getname.js | 33 crl: [Buffer.from('c'), Buffer.from('r'), Buffer.from('l')],
|
H A D | test-readline-reopen.js | 25 Buffer.from('foo\n'), 26 Buffer.from([ 0xe2 ]), // Exactly one third of a ☃ snowman. 42 input.write(Buffer.from([0x98, 0x83])); // The rest of the ☃ snowman.
|
/third_party/musl/src/setjmp/powerpc64/ |
H A D | setjmp.s | 10 ld 5, 24(1) # load from the TOC slot in the caller's stack frame 21 # r4 would normally be the 2nd parameter, but we're using r5 to simplify calling from sigsetjmp. 22 # solves the problem of knowing whether to save the TOC pointer from r2 or the caller's stack frame.
|
/third_party/node/deps/npm/node_modules/@isaacs/cliui/node_modules/string-width/ |
H A D | index.js | 1 import stripAnsi from 'strip-ansi'; 2 import eastAsianWidth from 'eastasianwidth'; 3 import emojiRegex from 'emoji-regex';
|
/third_party/node/deps/npm/node_modules/wrap-ansi/node_modules/string-width/ |
H A D | index.js | 1 import stripAnsi from 'strip-ansi'; 2 import eastAsianWidth from 'eastasianwidth'; 3 import emojiRegex from 'emoji-regex';
|
/third_party/node/deps/v8/src/heap/ |
H A D | incremental-marking-inl.h | 18 void IncrementalMarking::TransferColor(HeapObject from, HeapObject to) { in TransferColor() argument 25 if (atomic_marking_state()->IsGrey(from)) { in TransferColor() 29 } else if (atomic_marking_state()->IsBlack(from)) { in TransferColor()
|
/third_party/parse5/packages/parse5/ |
H A D | uglify-source.js | 15 import fs from 'fs'; 16 import path from 'path'; 17 import uglifyJS from 'uglify-js';
|
/third_party/typescript/tests/baselines/reference/ |
H A D | declarationsIndirectGeneratedAliasReference.js | 13 import { Ctor } from "./ctor"; 16 import * as ns from "mod"; 31 import * as ns from "mod";
|
H A D | enums.js | 18 import type { SyntaxKind, SymbolFlags } from './a'; 29 import { SymbolFlags } from './a'; 30 import type { TypeFlag } from './b';
|
H A D | moduleResolutionWithSymlinks.js | 10 import {MyClass} from "library-a"; 14 import { MyClass } from "./library-a"; 15 import { MyClass2 } from "./library-b"; 30 echo 'import {MyClass} from "library-a"; export { MyClass as MyClass2 }' > index.ts 37 echo 'import { MyClass } from "./library-a"; import { MyClass2 } from "./library-b"; let x: MyClass; let y: MyClass2; x = y; y = x;' > app.ts 75 echo 'import {MyClass} from "library-a"; export { MyClass as MyClass2 }' > index.ts
82 echo 'import { MyClass } from "./library-a"; import { MyClass2 } from "./library-b"; let x: MyClass; let y: MyClass2; x = y; y = x;' > app.ts
|
H A D | moduleResolutionWithSymlinks_withOutDir.js | 9 import {MyClass} from "library-a"; 13 import { MyClass } from "./library-a"; 14 import { MyClass2 } from "./library-b";
|
H A D | noCrashOnImportShadowing.js | 7 import * as B from "./b"; 19 import { B } from "./a"; 24 import * as OriginalB from "./b";
|
H A D | pathMappingBasedModuleResolution3_node.js | 6 import {x} from "folder2/file2" 11 import {x as a} from "./file3" // found with baseurl 12 import {y as b} from "file4" // found with fallback
|
H A D | pathMappingBasedModuleResolution4_node.js | 4 import {x} from "folder2/file2" 9 import {x as a} from "./file3" // found with baseurl 10 import {y as b} from "file4" // found with fallback
|
H A D | exportAsNamespace1(module=commonjs).js | 8 export * as ns from './0'; 13 import * as foo from './1' 43 export * as ns from './0';
|
H A D | exportsAndImportsWithContextualKeywordNames01.js | 13 import * as set from "./t1"; 16 import { set as yield } from "./t1"; 19 import { get } from "./t1";
|
H A D | exportsAndImportsWithContextualKeywordNames02.js | 9 import * as as from "./t1"; 14 import { as as as } from "./t1"; 17 import { as } from "./t1";
|
H A D | importHelpersWithImportOrExportDefault(esmoduleinterop=false,module=commonjs).js | 7 export { default } from "./a"; 8 export { default as a } from "./a"; 9 import { default as b } from "./a";
|
H A D | importHelpersWithImportOrExportDefault(esmoduleinterop=true,module=commonjs).js | 7 export { default } from "./a"; 8 export { default as a } from "./a"; 9 import { default as b } from "./a";
|
H A D | jsxDeclarationsWithEsModuleInteropNoCrash.js | 3 import PropTypes from 'prop-types'; 4 import React from 'react'; 42 import PropTypes from "prop-types";
|
H A D | allowImportClausesToMergeWithTypes.js | 12 import zzz from "./b"; 20 import zzz from "./a"; 25 import originalZZZ from "./b";
|