/third_party/skia/third_party/externals/freetype/src/tools/ |
D | apinames.c | 69 int nn, len; in names_add() local 80 for ( nn = 0; nn < len; nn++ ) in names_add() 81 h = h * 33 + name[nn]; in names_add() 84 for ( nn = 0; nn < num_names; nn++ ) in names_add() 86 nm = the_names + nn; in names_add() 139 int nn; in names_dump() local 151 for ( nn = 0; nn < num_names; nn++ ) in names_dump() 152 fprintf( out, " %s\n", the_names[nn].name ); in names_dump() 163 for ( nn = 0; nn < num_names; nn++ ) in names_dump() 164 fprintf( out, " _%s\n", the_names[nn].name ); in names_dump() [all …]
|
/third_party/gn/src/gn/ |
D | string_output_buffer.cc | 19 for (size_t nn = 0; nn < pages_.size(); ++nn) { in str() local 20 size_t wanted_size = std::min(kPageSize, data_size - nn * kPageSize); in str() 21 result.append(pages_[nn]->data(), wanted_size); in str() 71 for (size_t nn = 0; nn < page_count; ++nn) { in ContentsEqual() local 72 size_t wanted_size = std::min(data_size - nn * kPageSize, kPageSize); in ContentsEqual() 77 if (memcmp(file_page.data(), pages_[nn]->data(), wanted_size) != 0) in ContentsEqual() 102 for (size_t nn = 0; nn < page_count; ++nn) { in WriteToFile() local 103 size_t wanted_size = std::min(data_size - nn * kPageSize, kPageSize); in WriteToFile() 104 success = writer.Write(std::string_view(pages_[nn]->data(), wanted_size)); in WriteToFile()
|
D | string_atom_unittest.cc | 141 for (size_t nn = 0; nn < kMaxCount; ++nn) { in TEST() local 142 keys.push_back(StringAtom(string_for(nn))); in TEST() 145 for (size_t nn = 0; nn < kMaxCount; ++nn) { in TEST() local 146 ASSERT_EQ(keys[nn].str(), string_for(nn)); in TEST()
|
/third_party/ffmpeg/libavfilter/ |
D | vf_nnedi.c | 305 static int filter_offset(int nn, const PredictorCoefficients *const model) in filter_offset() argument 307 return nn * model->nsize; in filter_offset() 310 static const float *softmax_q1_filter(int nn, in softmax_q1_filter() argument 313 return model->softmax_q1 + filter_offset(nn, model); in softmax_q1_filter() 316 static const float *elliott_q1_filter(int nn, in elliott_q1_filter() argument 319 return model->elliott_q1 + filter_offset(nn, model); in elliott_q1_filter() 322 static const float *softmax_q2_filter(int nn, in softmax_q2_filter() argument 325 return model->softmax_q2 + filter_offset(nn, model); in softmax_q2_filter() 328 static const float *elliott_q2_filter(int nn, in elliott_q2_filter() argument 331 return model->elliott_q2 + filter_offset(nn, model); in elliott_q2_filter() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | classStaticBlock23(target=es2022).js | 6 for await (const nn of nums) { 7 console.log(nn) 15 for await (const nn of nums) { 16 console.log(nn) 27 for await (const nn of nums) { 28 console.log(nn); 35 for await (const nn of nums) { 36 console.log(nn);
|
D | classStaticBlock23(target=esnext).js | 6 for await (const nn of nums) { 7 console.log(nn) 15 for await (const nn of nums) { 16 console.log(nn) 27 for await (const nn of nums) { 28 console.log(nn); 35 for await (const nn of nums) { 36 console.log(nn);
|
D | classStaticBlock23(target=esnext).symbols | 16 for await (const nn of nums) { 17 >nn : Symbol(nn, Decl(classStaticBlock23.ts, 4, 20)) 20 console.log(nn) 24 >nn : Symbol(nn, Decl(classStaticBlock23.ts, 4, 20)) 36 for await (const nn of nums) { 37 >nn : Symbol(nn, Decl(classStaticBlock23.ts, 13, 22)) 40 console.log(nn) 44 >nn : Symbol(nn, Decl(classStaticBlock23.ts, 13, 22))
|
D | classStaticBlock23(target=es2022).symbols | 16 for await (const nn of nums) { 17 >nn : Symbol(nn, Decl(classStaticBlock23.ts, 4, 20)) 20 console.log(nn) 24 >nn : Symbol(nn, Decl(classStaticBlock23.ts, 4, 20)) 36 for await (const nn of nums) { 37 >nn : Symbol(nn, Decl(classStaticBlock23.ts, 13, 22)) 40 console.log(nn) 44 >nn : Symbol(nn, Decl(classStaticBlock23.ts, 13, 22))
|
D | classStaticBlock23(target=esnext).types | 23 for await (const nn of nums) { 24 >nn : number 27 console.log(nn) 28 >console.log(nn) : void 32 >nn : number 44 for await (const nn of nums) { 45 >nn : number 48 console.log(nn) 49 >console.log(nn) : void 53 >nn : number
|
D | classStaticBlock23(target=es2022).types | 23 for await (const nn of nums) { 24 >nn : number 27 console.log(nn) 28 >console.log(nn) : void 32 >nn : number 44 for await (const nn of nums) { 45 >nn : number 48 console.log(nn) 49 >console.log(nn) : void 53 >nn : number
|
/third_party/skia/third_party/externals/freetype/src/base/ |
D | ftadvanc.c | 32 FT_UInt nn; in _ft_face_scale_advances() local 49 for ( nn = 0; nn < count; nn++ ) in _ft_face_scale_advances() 50 advances[nn] = FT_MulDiv( advances[nn], scale, 64 ); in _ft_face_scale_advances() 122 FT_UInt num, end, nn; in FT_Get_Advances() local 158 for ( nn = 0; nn < count; nn++ ) in FT_Get_Advances() 160 error = FT_Load_Glyph( face, start + nn, flags ); in FT_Get_Advances() 165 padvances[nn] = ( flags & FT_LOAD_VERTICAL_LAYOUT ) in FT_Get_Advances()
|
D | fthash.c | 238 FT_Hashnode nn; in hash_insert() local 243 nn = *bp; in hash_insert() 244 if ( !nn ) in hash_insert() 246 if ( FT_NEW( nn ) ) in hash_insert() 248 *bp = nn; in hash_insert() 250 nn->key = key; in hash_insert() 251 nn->data = data; in hash_insert() 263 nn->data = data; in hash_insert()
|
/third_party/node/deps/openssl/openssl/crypto/lhash/ |
D | lhash.c | 89 OPENSSL_LH_NODE *n, *nn; in OPENSSL_LH_flush() local 97 nn = n->next; in OPENSSL_LH_flush() 99 n = nn; in OPENSSL_LH_flush() 110 OPENSSL_LH_NODE *nn, **rn; in OPENSSL_LH_insert() local 120 if ((nn = OPENSSL_malloc(sizeof(*nn))) == NULL) { in OPENSSL_LH_insert() 124 nn->data = data; in OPENSSL_LH_insert() 125 nn->next = NULL; in OPENSSL_LH_insert() 126 nn->hash = hash; in OPENSSL_LH_insert() 127 *rn = nn; in OPENSSL_LH_insert() 140 OPENSSL_LH_NODE *nn, **rn; in OPENSSL_LH_delete() local [all …]
|
/third_party/openssl/crypto/lhash/ |
D | lhash.c | 89 OPENSSL_LH_NODE *n, *nn; in OPENSSL_LH_flush() local 97 nn = n->next; in OPENSSL_LH_flush() 99 n = nn; in OPENSSL_LH_flush() 110 OPENSSL_LH_NODE *nn, **rn; in OPENSSL_LH_insert() local 120 if ((nn = OPENSSL_malloc(sizeof(*nn))) == NULL) { in OPENSSL_LH_insert() 124 nn->data = data; in OPENSSL_LH_insert() 125 nn->next = NULL; in OPENSSL_LH_insert() 126 nn->hash = hash; in OPENSSL_LH_insert() 127 *rn = nn; in OPENSSL_LH_insert() 140 OPENSSL_LH_NODE *nn, **rn; in OPENSSL_LH_delete() local [all …]
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | RBNFChinesePostProcessor.java | 101 int nn = buf.lastIndexOf(ling, x); in process() local 103 if (nn > m) { in process() 104 ns = (nn > 0 && buf.charAt(nn-1) != '*') ? 2 : 1; in process() 116 n = nn; // remember optional ling to right in process() 127 buf.delete(nn-1, nn+ling.length()); // delete current optional ling in process() 141 buf.delete(nn-1, nn+ling.length()); // delete current optional ling in process()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
D | RBNFChinesePostProcessor.java | 102 int nn = buf.lastIndexOf(ling, x); in process() local 104 if (nn > m) { in process() 105 ns = (nn > 0 && buf.charAt(nn-1) != '*') ? 2 : 1; in process() 117 n = nn; // remember optional ling to right in process() 128 buf.delete(nn-1, nn+ling.length()); // delete current optional ling in process() 142 buf.delete(nn-1, nn+ling.length()); // delete current optional ling in process()
|
/third_party/curl/tests/certs/ |
D | Makefile.am | 32 Server-localhost.nn-sv.prm \ 53 Server-localhost.nn-sv.crl \ 54 Server-localhost.nn-sv.crt \ 55 Server-localhost.nn-sv.csr \ 56 Server-localhost.nn-sv.der \ 57 Server-localhost.nn-sv.dhp \ 58 Server-localhost.nn-sv.key \ 59 Server-localhost.nn-sv.pem \ 60 Server-localhost.nn-sv.pub.der \ 61 Server-localhost.nn-sv.pub.pem \ [all …]
|
/third_party/skia/third_party/externals/freetype/src/sfnt/ |
D | sfwoff.c | 114 FT_Int nn; in woff_open_font() local 211 for ( nn = 0; nn < woff.num_tables; nn++ ) in woff_open_font() 213 WOFF_Table table = tables + nn; in woff_open_font() 241 indices[nn] = table; in woff_open_font() 258 for ( nn = 0; nn < woff.num_tables; nn++ ) in woff_open_font() 260 WOFF_Table table = indices[nn]; in woff_open_font() 341 for ( nn = 0; nn < woff.num_tables; nn++ ) in woff_open_font() 343 WOFF_Table table = tables + nn; in woff_open_font()
|
/third_party/skia/third_party/externals/freetype/src/autofit/ |
D | afglobal.c | 269 FT_Long nn; in af_face_globals_compute_style_coverage() local 272 for ( nn = 0; nn < globals->glyph_count; nn++ ) in af_face_globals_compute_style_coverage() 274 if ( ( gstyles[nn] & AF_STYLE_MASK ) == AF_STYLE_UNASSIGNED ) in af_face_globals_compute_style_coverage() 276 gstyles[nn] &= ~AF_STYLE_MASK; in af_face_globals_compute_style_coverage() 277 gstyles[nn] |= globals->module->fallback_style; in af_face_globals_compute_style_coverage() 383 FT_UInt nn; in af_face_globals_free() local 386 for ( nn = 0; nn < AF_STYLE_MAX; nn++ ) in af_face_globals_free() 388 if ( globals->metrics[nn] ) in af_face_globals_free() 391 af_style_classes[nn]; in af_face_globals_free() 397 writing_system_class->style_metrics_done( globals->metrics[nn] ); in af_face_globals_free() [all …]
|
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/3.7/nullish_coalescing/ |
D | nullish_coalescing_1.ts | 24 let nn: number | null; variable 25 nn = 1408; 27 let x = nn ?? str; 29 nn = null; 30 let y = nn ?? str;
|
/third_party/vk-gl-cts/external/vulkan-docs/src/chapters/VK_NN_vi_surface/ |
D | platformCreateSurface_vi.txt | 10 To create a sname:VkSurfaceKHR object for an code:nn::code:vi::code:Layer, 12 code:nn::code:vi::code:GetNativeWindow, and then call: 27 code:nn::code:vi::code:NativeWindowHandle, applications must: not attempt to 28 create another surface for the same code:nn::code:vi::code:Layer or attempt 29 to connect to the same code:nn::code:vi::code:Layer through other platform 40 code:nn::code:vi::code:GetDisplayResolution). 55 * pname:window is the code:nn::code:vi::code:NativeWindowHandle for the 56 code:nn::code:vi::code:Layer with which to associate the surface. 61 pname:window must: be a valid code:nn::code:vi::code:NativeWindowHandle
|
/third_party/skia/third_party/externals/freetype/src/truetype/ |
D | ttpload.c | 526 FT_UInt nn, num_records; in tt_face_load_hdmx() local 577 for ( nn = 0; nn < num_records; nn++ ) in tt_face_load_hdmx() 582 face->hdmx_record_sizes[nn] = p[0]; in tt_face_load_hdmx() 586 face->hdmx_record_count = nn; in tt_face_load_hdmx() 622 FT_UInt nn; in tt_face_get_device_metrics() local 628 for ( nn = 0; nn < face->hdmx_record_count; nn++ ) in tt_face_get_device_metrics() 629 if ( face->hdmx_record_sizes[nn] == ppem ) in tt_face_get_device_metrics() 633 result = record + nn * record_size + gindex; in tt_face_get_device_metrics()
|
D | ttdriver.c | 228 FT_UInt nn; in tt_get_advances() local 243 for ( nn = 0; nn < count; nn++ ) in tt_get_advances() 250 TT_Get_VMetrics( face, start + nn, 0, &tsb, &ah ); in tt_get_advances() 251 advances[nn] = ah; in tt_get_advances() 263 for ( nn = 0; nn < count; nn++ ) in tt_get_advances() 269 TT_Get_HMetrics( face, start + nn, &lsb, &aw ); in tt_get_advances() 270 advances[nn] = aw; in tt_get_advances()
|
/third_party/typescript/tests/cases/conformance/classes/classStaticBlock/ |
D | classStaticBlock23.ts | 7 for await (const nn of nums) { 8 console.log(nn) 16 for await (const nn of nums) { constant 17 console.log(nn)
|
/third_party/skia/third_party/externals/freetype/src/type1/ |
D | t1gload.c | 286 FT_UInt nn; in T1_Get_Advances() local 294 for ( nn = 0; nn < count; nn++ ) in T1_Get_Advances() 296 advances[nn] = 0; in T1_Get_Advances() 299 first + nn )); in T1_Get_Advances() 328 for ( nn = 0; nn < count; nn++ ) in T1_Get_Advances() 330 error = T1_Parse_Glyph( &decoder, first + nn ); in T1_Get_Advances() 332 advances[nn] = FIXED_TO_INT( decoder.builder.advance.x ); in T1_Get_Advances() 334 advances[nn] = 0; in T1_Get_Advances() 337 first + nn, in T1_Get_Advances() 338 advances[nn], in T1_Get_Advances() [all …]
|