Home
last modified time | relevance | path

Searched refs:from (Results 476 - 500 of 3614) sorted by relevance

1...<<11121314151617181920>>...145

/third_party/node/deps/openssl/openssl/crypto/x509/
H A Dx_name.c390 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 Ddh_ameth.c321 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 Dx_name.c390 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 Dencrypt.rs221 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 Dtest-https-agent-getname.js33 crl: [Buffer.from('c'), Buffer.from('r'), Buffer.from('l')],
H A Dtest-readline-reopen.js25 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 Dsetjmp.s10 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 Dindex.js1 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 Dindex.js1 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 Dincremental-marking-inl.h18 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 Duglify-source.js15 import fs from 'fs';
16 import path from 'path';
17 import uglifyJS from 'uglify-js';
/third_party/typescript/tests/baselines/reference/
H A DdeclarationsIndirectGeneratedAliasReference.js13 import { Ctor } from "./ctor";
16 import * as ns from "mod";
31 import * as ns from "mod";
H A Denums.js18 import type { SyntaxKind, SymbolFlags } from './a';
29 import { SymbolFlags } from './a';
30 import type { TypeFlag } from './b';
H A DmoduleResolutionWithSymlinks.js10 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 DmoduleResolutionWithSymlinks_withOutDir.js9 import {MyClass} from "library-a";
13 import { MyClass } from "./library-a";
14 import { MyClass2 } from "./library-b";
H A DnoCrashOnImportShadowing.js7 import * as B from "./b";
19 import { B } from "./a";
24 import * as OriginalB from "./b";
H A DpathMappingBasedModuleResolution3_node.js6 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 DpathMappingBasedModuleResolution4_node.js4 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 DexportAsNamespace1(module=commonjs).js8 export * as ns from './0';
13 import * as foo from './1'
43 export * as ns from './0';
H A DexportsAndImportsWithContextualKeywordNames01.js13 import * as set from "./t1";
16 import { set as yield } from "./t1";
19 import { get } from "./t1";
H A DexportsAndImportsWithContextualKeywordNames02.js9 import * as as from "./t1";
14 import { as as as } from "./t1";
17 import { as } from "./t1";
H A DimportHelpersWithImportOrExportDefault(esmoduleinterop=false,module=commonjs).js7 export { default } from "./a";
8 export { default as a } from "./a";
9 import { default as b } from "./a";
H A DimportHelpersWithImportOrExportDefault(esmoduleinterop=true,module=commonjs).js7 export { default } from "./a";
8 export { default as a } from "./a";
9 import { default as b } from "./a";
H A DjsxDeclarationsWithEsModuleInteropNoCrash.js3 import PropTypes from 'prop-types';
4 import React from 'react';
42 import PropTypes from "prop-types";
H A DallowImportClausesToMergeWithTypes.js12 import zzz from "./b";
20 import zzz from "./a";
25 import originalZZZ from "./b";

Completed in 13 milliseconds

1...<<11121314151617181920>>...145