/third_party/node/deps/openssl/openssl/crypto/bio/ |
H A D | bf_nbio.c | 56 NBIO_TEST *nt; in nbiof_new() local 58 if ((nt = OPENSSL_zalloc(sizeof(*nt))) == NULL) { in nbiof_new() 62 nt->lrn = -1; in nbiof_new() 63 nt->lwn = -1; in nbiof_new() 64 bi->ptr = (char *)nt; in nbiof_new() 112 NBIO_TEST *nt; in nbiof_write() local 121 nt = (NBIO_TEST *)b->ptr; in nbiof_write() 125 if (nt->lwn > 0) { in nbiof_write() 126 num = nt in nbiof_write() [all...] |
/third_party/openssl/crypto/bio/ |
H A D | bf_nbio.c | 56 NBIO_TEST *nt; in nbiof_new() local 58 if ((nt = OPENSSL_zalloc(sizeof(*nt))) == NULL) { in nbiof_new() 62 nt->lrn = -1; in nbiof_new() 63 nt->lwn = -1; in nbiof_new() 64 bi->ptr = (char *)nt; in nbiof_new() 112 NBIO_TEST *nt; in nbiof_write() local 121 nt = (NBIO_TEST *)b->ptr; in nbiof_write() 125 if (nt->lwn > 0) { in nbiof_write() 126 num = nt in nbiof_write() [all...] |
/third_party/ltp/testcases/kernel/syscalls/timer_create/ |
H A D | timer_create01.c | 48 struct notif_type *nt = &types[n]; in run() local 51 tst_res(TINFO, "Testing notification type: %s", nt->message); in run() 59 evp.sigev_signo = nt->sigev_signo; in run() 60 evp.sigev_notify = nt->sigev_notify; in run() 65 if (nt->sigev_notify == SIGEV_THREAD_ID) in run() 69 nt->sigev_notify ? &evp : NULL, in run()
|
/third_party/skia/docs/examples/ |
H A D | Turtle.cpp | 44 Turtle nt = { t.x + sinf(r) * d, t.y - cosf(r) * d, t.h, t.p }; in REG_FIDDLE_ANIMATED() local 45 if (pt && t.p) canvas->drawLine(t.x, t.y, nt.x, nt.y, p()); in REG_FIDDLE_ANIMATED() 46 t = nt; in REG_FIDDLE_ANIMATED()
|
/third_party/python/Lib/ |
H A D | tabnanny.py | 143 # nt 161 b = n = nt = 0 168 nt = nt + 1 176 self.nt = nt 205 return trailing + tabsize * (il + self.nt) 244 return self.nt <= other.nt
|
H A D | os.py | 4 - all functions from posix or nt, e.g. unlink, stat, etc. 6 - os.name is either 'posix' or 'nt' 72 elif 'nt' in _names: 73 name = 'nt' 75 from nt import * 77 from nt import _exit 83 import nt namespace 84 __all__.extend(_get_exports_list(nt)) 85 del nt 88 from nt impor 1118 import nt global() namespace [all...] |
H A D | ntpath.py | 287 from nt import _getvolumepathname 493 from nt import _path_normpath 548 `nt._getfullpathname` is not available or raises OSError. See bpo-31047 for 564 from nt import _getfullpathname 578 from nt import _getfinalpathname, readlink as _nt_readlink 854 from nt import _isdir as isdir
|
/third_party/typescript/tests/baselines/reference/ |
H A D | objectSpread.js | 50 function conditionalSpreadNumber(nt: number): { x: number, y: number } { 54 ...nt && { x: nt } 56 let o2 = { ...nt && { x: nt }} 186 function conditionalSpreadNumber(nt) {
188 o = __assign(__assign({}, o), nt && { x: nt });
189 var o2 = __assign({}, nt && { x: nt });
[all...] |
/third_party/lzma/CPP/7zip/UI/Common/ |
H A D | ArchiveCommandLine.cpp | 1416 CExtractNtOptions &nt = eo.NtOptions;
in Parse2() local 1417 nt.NtSecurity = options.NtSecurity;
in Parse2() 1419 nt.AltStreams = options.AltStreams;
in Parse2() 1421 nt.AltStreams.Val = true;
in Parse2() 1423 nt.HardLinks = options.HardLinks;
in Parse2() 1425 nt.HardLinks.Val = true;
in Parse2() 1427 nt.SymLinks = options.SymLinks;
in Parse2() 1429 nt.SymLinks.Val = true;
in Parse2() 1431 nt.SymLinks_AllowDangerous = symLinks_AllowDangerous;
in Parse2() 1433 nt in Parse2() [all...] |
/third_party/ltp/testcases/kernel/mem/hugetlb/hugemmap/ |
H A D | hugemmap10.c | 57 long nt, nf, nr, ns; in kernel_has_private_reservations() local 65 read_meminfo_huge(&nt, &nf, &nr, &ns); in kernel_has_private_reservations() 79 if ((nt == t + 1) && (nf == f + 1) && (ns == s + 1) && (nr == r + 1)) in kernel_has_private_reservations() 81 else if ((nt == t) && (nf == f) && (ns == s)) { in kernel_has_private_reservations() 89 t, f, r, s, nt, nf, nr, ns); in kernel_has_private_reservations()
|
/third_party/python/Lib/test/ |
H A D | test_ntpath.py | 15 import nt namespace 17 # Most tests can complete without the nt module, 19 nt = None variable 673 @unittest.skipUnless(nt, "abspath requires 'nt' module") 864 @unittest.skipUnless(nt, "OS helpers require 'nt' module") 869 executable = nt._getfinalpathname(sys.executable) 872 volume_path = nt._getvolumepathname(path) 877 cap, free = nt [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | vf_varblur.c | 170 const int nt = FFMIN(nradius, y); \ 176 stype ntl = ptr[(y - nt) * ptr_linesize + x - nl]; \ 177 stype ntr = ptr[(y - nt) * ptr_linesize + x + nr]; \ 181 stype ndiv = (nl + nr) * (nt + nb); \
|
/third_party/python/Lib/ctypes/ |
H A D | __init__.py | 20 if _os.name == "nt": 108 if _os.name == "nt": 267 if _os.name == "nt": 360 if _os.name == "nt": 364 import nt namespace 365 mode = nt._LOAD_LIBRARY_SEARCH_DEFAULT_DIRS 367 self._name = nt._getfullpathname(self._name) 368 mode |= nt._LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR 406 if _os.name == "nt": 461 if _os.name == "nt" [all...] |
/third_party/icu/icu4c/source/common/ |
H A D | utrie2_builder.cpp | 352 NewTrieAndStatus *nt=(NewTrieAndStatus *)context; in copyEnumRange() local 353 if(value!=nt->trie->initialValue) { in copyEnumRange() 354 if(nt->exclusiveLimit) { in copyEnumRange() 358 utrie2_set32(nt->trie, start, value, &nt->errorCode); in copyEnumRange() 360 utrie2_setRange32(nt->trie, start, end, value, true, &nt->errorCode); in copyEnumRange() 362 return U_SUCCESS(nt->errorCode); in copyEnumRange()
|
/third_party/node/deps/icu-small/source/common/ |
H A D | utrie2_builder.cpp | 352 NewTrieAndStatus *nt=(NewTrieAndStatus *)context; in copyEnumRange() local 353 if(value!=nt->trie->initialValue) { in copyEnumRange() 354 if(nt->exclusiveLimit) { in copyEnumRange() 358 utrie2_set32(nt->trie, start, value, &nt->errorCode); in copyEnumRange() 360 utrie2_setRange32(nt->trie, start, end, value, true, &nt->errorCode); in copyEnumRange() 362 return U_SUCCESS(nt->errorCode); in copyEnumRange()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | utrie2_builder.cpp | 352 NewTrieAndStatus *nt=(NewTrieAndStatus *)context; in copyEnumRange() local 353 if(value!=nt->trie->initialValue) { in copyEnumRange() 354 if(nt->exclusiveLimit) { in copyEnumRange() 358 utrie2_set32(nt->trie, start, value, &nt->errorCode); in copyEnumRange() 360 utrie2_setRange32(nt->trie, start, end, value, TRUE, &nt->errorCode); in copyEnumRange() 362 return U_SUCCESS(nt->errorCode); in copyEnumRange()
|
/third_party/curl/lib/ |
H A D | smb.c | 641 unsigned char nt[24]; in smb_send_setup() local 643 size_t byte_count = sizeof(lm) + sizeof(nt); in smb_send_setup() 652 Curl_ntlm_core_lm_resp(nt_hash, smbc->challenge, nt); in smb_send_setup() 663 msg.lengths[1] = smb_swap16(sizeof(nt)); in smb_send_setup() 666 memcpy(p, nt, sizeof(nt)); in smb_send_setup() 667 p += sizeof(nt); in smb_send_setup()
|
/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
H A D | sb_shader.h | 355 node* create_node(node_type nt, node_subtype nst, 366 container_node* create_container(node_type nt = NT_LIST,
|
H A D | sb_shader.cpp | 257 node* shader::create_node(node_type nt, node_subtype nst, node_flags flags) { in create_node() argument 258 node *n = new (pool.allocate(sizeof(node))) node(nt, nst, flags); in create_node() 320 container_node* shader::create_container(node_type nt, node_subtype nst, in create_container() argument 323 container_node(nt, nst, flags); in create_container()
|
H A D | sb_ir.h | 770 node(node_type nt, node_subtype nst, node_flags flags = NF_EMPTY) in node() argument 772 type(nt), subtype(nst), flags(flags), in node() 881 container_node(node_type nt = NT_LIST, node_subtype nst = NST_LIST, in container_node() 883 : node(nt, nst, flags | NF_CONTAINER), first(), last(), in container_node()
|
/third_party/toybox/scripts/ |
H A D | make.sh | 307 [ "$OUT" -nt "$i" ] && [ -z "$CLICK" -o "$OUT" -nt "$KCONFIG_CONFIG" ] &&
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/serializable/ |
H A D | FormatHandler.java | 2444 for (GenericNameType nt : GenericNameType.values()) { in hasSameBehavior() 2446 String nameA = tzgna.getDisplayName(tz, nt, date); in hasSameBehavior() 2447 String nameB = tzgnb.getDisplayName(tz, nt, date); in hasSameBehavior() 2490 for (NameType nt : nTypes) { in hasSameBehavior() 2492 String nameA = tzdbna.getDisplayName(tzid, nt, date); in hasSameBehavior() 2493 String nameB = tzdbnb.getDisplayName(tzid, nt, date); in hasSameBehavior()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/ |
H A D | FormatHandler.java | 2457 for (GenericNameType nt : GenericNameType.values()) { in hasSameBehavior() 2459 String nameA = tzgna.getDisplayName(tz, nt, date); in hasSameBehavior() 2460 String nameB = tzgnb.getDisplayName(tz, nt, date); in hasSameBehavior() 2503 for (NameType nt : nTypes) { in hasSameBehavior() 2505 String nameA = tzdbna.getDisplayName(tzid, nt, date); in hasSameBehavior() 2506 String nameB = tzdbnb.getDisplayName(tzid, nt, date); in hasSameBehavior()
|
/third_party/python/Lib/venv/ |
H A D | __init__.py | 195 nt = os.name == 'nt' 196 if nt and self.symlinks: 198 if not nt and not self.symlinks: 217 if os.name != 'nt': 258 "nt", 291 if os.name != 'nt': 426 if (os.name == 'nt' and f.startswith('python') 497 if os.name == 'nt':
|
/third_party/protobuf/objectivec/DevTools/ |
H A D | compile_testing_protos.sh | 135 if [[ "${NewestInput}" -nt "${OldestOutput}" ]] ; then
|