Home
last modified time | relevance | path

Searched refs:nn (Results 1 - 25 of 80) sorted by relevance

1234

/third_party/skia/third_party/externals/freetype/src/tools/
H A Dapinames.c69 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
[all...]
/third_party/gn/src/gn/
H A Dstring_output_buffer.cc19 for (size_t nn = 0; nn < pages_.size(); ++nn) { in str()
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()
72 size_t wanted_size = std::min(data_size - nn * kPageSize, kPageSize); in ContentsEqual()
77 if (memcmp(file_page.data(), pages_[nn] in ContentsEqual()
[all...]
H A Dstring_atom_unittest.cc141 for (size_t nn = 0; nn < kMaxCount; ++nn) {
142 keys.push_back(StringAtom(string_for(nn)));
145 for (size_t nn = 0; nn < kMaxCount; ++nn) {
146 ASSERT_EQ(keys[nn].str(), string_for(nn));
/third_party/ffmpeg/libavfilter/
H A Dvf_nnedi.c297 static int filter_offset(int nn, const PredictorCoefficients *const model) in filter_offset() argument
299 return nn * model->nsize; in filter_offset()
302 static const float *softmax_q1_filter(int nn, in softmax_q1_filter() argument
305 return model->softmax_q1 + filter_offset(nn, model); in softmax_q1_filter()
308 static const float *elliott_q1_filter(int nn, in elliott_q1_filter() argument
311 return model->elliott_q1 + filter_offset(nn, model); in elliott_q1_filter()
314 static const float *softmax_q2_filter(int nn, in softmax_q2_filter() argument
317 return model->softmax_q2 + filter_offset(nn, model); in softmax_q2_filter()
320 static const float *elliott_q2_filter(int nn, in elliott_q2_filter() argument
323 return model->elliott_q2 + filter_offset(nn, mode in elliott_q2_filter()
[all...]
/third_party/skia/third_party/externals/freetype/src/base/
H A Dftadvanc.c32 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_EXPORT_DEF() local
158 for ( nn = 0; nn < count; nn in FT_EXPORT_DEF()
[all...]
H A Dfthash.c238 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/
H A Dlhash.c89 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; OPENSSL_LH_delete() local
294 unsigned long hash, nn; getrn() local
[all...]
/third_party/openssl/crypto/lhash/
H A Dlhash.c89 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; OPENSSL_LH_delete() local
294 unsigned long hash, nn; getrn() local
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DRBNFChinesePostProcessor.java101 int nn = buf.lastIndexOf(ling, x); in process()
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/
H A DRBNFChinesePostProcessor.java102 int nn = buf.lastIndexOf(ling, x); in process()
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/skia/third_party/externals/freetype/src/autofit/
H A Dafglobal.c269 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_MA in af_face_globals_free()
[all...]
/third_party/skia/third_party/externals/freetype/src/sfnt/
H A Dsfwoff.c114 FT_Int nn; in FT_LOCAL_DEF() local
211 for ( nn = 0; nn < woff.num_tables; nn++ ) in FT_LOCAL_DEF()
213 WOFF_Table table = tables + nn; in FT_LOCAL_DEF()
241 indices[nn] = table; in FT_LOCAL_DEF()
258 for ( nn = 0; nn < woff.num_tables; nn++ ) in FT_LOCAL_DEF()
260 WOFF_Table table = indices[nn]; in FT_LOCAL_DEF()
[all...]
H A Dttkern.c50 FT_UInt nn, num_tables; in FT_LOCAL_DEF() local
85 for ( nn = 0; nn < num_tables; nn++ ) in FT_LOCAL_DEF()
89 FT_UInt32 mask = (FT_UInt32)1UL << nn; in FT_LOCAL_DEF()
162 face->num_kern_tables = nn; in FT_LOCAL_DEF()
H A Dsfwoff2.c1517 FT_Int nn = 0; in reconstruct_font() local
1560 for ( nn = 0; nn < num_tables; nn++ ) in reconstruct_font()
1562 WOFF2_TableRec table = *( indices[nn] ); in reconstruct_font()
1755 FT_Int nn; in FT_LOCAL_DEF() local
1849 for ( nn = 0; nn < woff2.num_tables; nn++ ) in FT_LOCAL_DEF()
1851 WOFF2_Table table = tables + nn; in FT_LOCAL_DEF()
[all...]
/third_party/skia/third_party/externals/freetype/src/truetype/
H A Dttpload.c526 FT_UInt nn, num_records; in FT_LOCAL_DEF() local
577 for ( nn = 0; nn < num_records; nn++ ) in FT_LOCAL_DEF()
582 face->hdmx_record_sizes[nn] = p[0]; in FT_LOCAL_DEF()
586 face->hdmx_record_count = nn; in FT_LOCAL_DEF()
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()
[all...]
H A Dttdriver.c228 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, in tt_get_advances()
[all...]
/third_party/skia/third_party/externals/freetype/src/type1/
H A Dt1gload.c286 FT_UInt nn; in FT_LOCAL_DEF() local
294 for ( nn = 0; nn < count; nn++ ) in FT_LOCAL_DEF()
296 advances[nn] = 0; in FT_LOCAL_DEF()
299 first + nn )); in FT_LOCAL_DEF()
328 for ( nn = 0; nn < count; nn++ ) in FT_LOCAL_DEF()
330 error = T1_Parse_Glyph( &decoder, first + nn ); in FT_LOCAL_DEF()
[all...]
/third_party/skia/third_party/externals/freetype/src/cff/
H A Dcffdrivr.c208 FT_UInt nn; in FT_CALLBACK_DEF() local
239 for ( nn = 0; nn < count; nn++ ) in FT_CALLBACK_DEF()
246 start + nn, in FT_CALLBACK_DEF()
251 start + nn, in FT_CALLBACK_DEF()
254 advances[nn] = ah; in FT_CALLBACK_DEF()
270 for ( nn = 0; nn < count; nn in FT_CALLBACK_DEF()
[all...]
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_rational.h45 dng_srational (int32 nn, int32 dd) in dng_srational() argument
46 : n (nn) in dng_srational()
104 dng_urational (uint32 nn, uint32 dd) in dng_urational() argument
105 : n (nn) in dng_urational()
/third_party/libsnd/src/
H A Dogg.c316 { int nn ; in ogg_stream_next_page() local
322 { nn = ogg_sync_next_page (psf, &odata->opage, -1, NULL) ; in ogg_stream_next_page()
323 if (nn == 0) in ogg_stream_next_page()
327 if (nn <= 0) in ogg_stream_next_page()
328 return nn ; in ogg_stream_next_page()
347 { int nn ; in ogg_stream_unpack_page() local
353 nn = ogg_stream_packetout (&odata->ostream, ppkt) ; in ogg_stream_unpack_page()
354 if (nn == 0) in ogg_stream_unpack_page()
359 for ( ; nn == 0 ; nn in ogg_stream_unpack_page()
[all...]
H A Dogg_vorbis.c153 int i, nn ; in vorbis_read_header() local
198 { nn = ogg_stream_packetout (&odata->ostream, &odata->opacket) ; in vorbis_read_header()
200 if (nn == 0) in vorbis_read_header()
201 { nn = ogg_stream_next_page (psf, odata) ; in vorbis_read_header()
202 if (nn == 0) in vorbis_read_header()
206 if (nn == -1) in vorbis_read_header()
213 if (nn < 0) in vorbis_read_header()
623 int len, samples, i = 0 , nn ; in vorbis_read_sample() local
649 nn = ogg_stream_unpack_page (psf, odata) ; in vorbis_read_sample()
650 if (nn < in vorbis_read_sample()
801 int thisblock, lastblock, nn ; vorbis_skip() local
[all...]
/third_party/skia/third_party/externals/freetype/src/pshinter/
H A Dpshalgo.c1433 FT_UInt nn; in psh_hint_table_find_strong_points() local
1436 for ( nn = 0; nn < num_hints; nn++ ) in psh_hint_table_find_strong_points()
1438 PSH_Hint hint = sort[nn]; in psh_hint_table_find_strong_points()
1453 FT_UInt nn; in psh_hint_table_find_strong_points() local
1456 for ( nn = 0; nn < num_hints; nn++ ) in psh_hint_table_find_strong_points()
1458 PSH_Hint hint = sort[nn]; in psh_hint_table_find_strong_points()
1476 FT_UInt nn, min_flag, max_flag; psh_hint_table_find_strong_points() local
1847 FT_UInt nn; psh_glyph_interpolate_normal_points() local
[all...]
/third_party/node/deps/openssl/openssl/crypto/sha/
H A Dsha256.c82 unsigned int nn; \
85 for (nn=0;nn<SHA224_DIGEST_LENGTH/4;nn++) \
86 { ll=(c)->h[nn]; (void)HOST_l2c(ll,(s)); } \
89 for (nn=0;nn<SHA256_DIGEST_LENGTH/4;nn++) \
90 { ll=(c)->h[nn]; (void)HOST_l2c(ll,(s)); } \
95 for (nn
[all...]
/third_party/openssl/crypto/sha/
H A Dsha256.c82 unsigned int nn; \
85 for (nn=0;nn<SHA224_DIGEST_LENGTH/4;nn++) \
86 { ll=(c)->h[nn]; (void)HOST_l2c(ll,(s)); } \
89 for (nn=0;nn<SHA256_DIGEST_LENGTH/4;nn++) \
90 { ll=(c)->h[nn]; (void)HOST_l2c(ll,(s)); } \
95 for (nn
[all...]
/third_party/skia/third_party/externals/freetype/src/bdf/
H A Dbdfdrivr.c220 size_t lengths[4], nn, len; in bdf_interpret_style() local
258 for ( len = 0, nn = 0; nn < 4; nn++ ) in bdf_interpret_style()
260 lengths[nn] = 0; in bdf_interpret_style()
261 if ( strings[nn] ) in bdf_interpret_style()
263 lengths[nn] = ft_strlen( strings[nn] ); in bdf_interpret_style()
264 len += lengths[nn] + 1; in bdf_interpret_style()
284 for ( nn in bdf_interpret_style()
[all...]

Completed in 16 milliseconds

1234