Home
last modified time | relevance | path

Searched refs:nentry (Results 1 – 6 of 6) sorted by relevance

/third_party/openssl/crypto/x509/
Dx509name.c245 X509_NAME_ENTRY *nentry; in X509_NAME_ENTRY_create_by_txt() local
253 nentry = X509_NAME_ENTRY_create_by_OBJ(ne, obj, type, bytes, len); in X509_NAME_ENTRY_create_by_txt()
255 return nentry; in X509_NAME_ENTRY_create_by_txt()
264 X509_NAME_ENTRY *nentry; in X509_NAME_ENTRY_create_by_NID() local
271 nentry = X509_NAME_ENTRY_create_by_OBJ(ne, obj, type, bytes, len); in X509_NAME_ENTRY_create_by_NID()
273 return nentry; in X509_NAME_ENTRY_create_by_NID()
/third_party/gstreamer/gstplugins_good/gst/isomp4/
Datoms.c3184 STSCEntry *nentry; in atom_stsc_add_new_entry() local
3187 nentry = &atom_array_index (&stsc->entries, len - 1); in atom_stsc_add_new_entry()
3188 nentry->first_chunk = first_chunk; in atom_stsc_add_new_entry()
3189 nentry->samples_per_chunk = nsamples; in atom_stsc_add_new_entry()
3190 nentry->sample_description_index = sample_description_index; in atom_stsc_add_new_entry()
3192 STSCEntry nentry; in atom_stsc_add_new_entry() local
3194 nentry.first_chunk = first_chunk; in atom_stsc_add_new_entry()
3195 nentry.samples_per_chunk = nsamples; in atom_stsc_add_new_entry()
3196 nentry.sample_description_index = sample_description_index; in atom_stsc_add_new_entry()
3197 atom_array_append (&stsc->entries, nentry, 128); in atom_stsc_add_new_entry()
[all …]
/third_party/libdrm/radeon/
Dbof.c38 if (bof->array_size < bof->nentry) in bof_entry_grow()
40 array = realloc(bof->array, (bof->nentry + 16) * sizeof(void*)); in bof_entry_grow()
44 bof->nentry += 16; in bof_entry_grow()
Dbof.h44 unsigned nentry; member
/third_party/nghttp2/src/
Dshrpx_http2_session.cc1710 size_t nentry = 3; in connection_made() local
1721 entry[nentry].settings_id = NGHTTP2_SETTINGS_ENABLE_PUSH; in connection_made()
1722 entry[nentry].value = 0; in connection_made()
1723 ++nentry; in connection_made()
1728 entry[nentry].settings_id = NGHTTP2_SETTINGS_HEADER_TABLE_SIZE; in connection_made()
1729 entry[nentry].value = http2conf.downstream.decoder_dynamic_table_size; in connection_made()
1730 ++nentry; in connection_made()
1734 nentry); in connection_made()
Dshrpx_http2_upstream.cc1049 size_t nentry = 3; in Http2Upstream() local
1065 entry[nentry].settings_id = NGHTTP2_SETTINGS_ENABLE_CONNECT_PROTOCOL; in Http2Upstream()
1066 entry[nentry].value = 1; in Http2Upstream()
1067 ++nentry; in Http2Upstream()
1072 entry[nentry].settings_id = NGHTTP2_SETTINGS_HEADER_TABLE_SIZE; in Http2Upstream()
1073 entry[nentry].value = http2conf.upstream.decoder_dynamic_table_size; in Http2Upstream()
1074 ++nentry; in Http2Upstream()
1078 nentry); in Http2Upstream()