Searched defs:missing (Results 1 - 25 of 35) sorted by relevance

12

/external/jemalloc/test/unit/
H A Dckh.c26 const char *missing = "A string not in the hash table."; local
66 assert_true(ckh_search(&ckh, missing, NULL, NULL),
/external/chromium_org/media/cast/net/rtp/
H A Dcast_message_builder.cc151 // Are we missing packets?
172 PacketIdSet missing; local
176 next_expected_frame_id, last_frame, &missing);
177 if (!missing.empty()) {
180 std::make_pair(next_expected_frame_id, missing));
184 missing.insert(kRtcpCastAllPacketsLost);
185 cast_msg_.missing_frames_and_packets[next_expected_frame_id] = missing;
H A Drtp_sender.cc134 // packets and frames are missing.
136 PacketIdSet missing; local
137 missing.insert(kRtcpCastLastPacket);
138 missing_frames_and_packets.insert(std::make_pair(frame_id, missing));
/external/chromium_org/net/quic/
H A Dquic_fec_group.cc82 // We can revive if we're missing exactly 1 packet.
87 // We are finished if we are not missing any packets.
99 QuicPacketSequenceNumber missing = kNoSequenceNumber; local
102 // Is this packet missing?
104 missing = i;
108 DCHECK_NE(kNoSequenceNumber, missing);
118 header->packet_sequence_number = missing;
121 received_packets_.insert(missing);
H A Dquic_connection_logger.cc115 base::ListValue* missing = new base::ListValue(); local
116 dict->Set("missing_packets", missing);
120 missing->AppendString(base::Uint64ToString(*it));
592 // Scan through the list and log consecutive ranges of missing packets.
H A Dquic_connection_test.cc958 void NackPacket(QuicPacketSequenceNumber missing, QuicAckFrame* frame) { argument
959 frame->missing_packets.insert(missing);
961 QuicConnectionPeer::PacketEntropy(&connection_, missing);
1104 // retransmitted, and will remove it from the missing list.
1171 // Removing one missing packet allows us to ack 192 and one more range, but
1205 // Should ack immediately since we have missing packets.
1209 // Should ack immediately since we have missing packets.
1253 // as missing, that will bundle an ack with data after two acks in a row
1274 // But an ack with no missing packets will not send an ack.
1286 // But an ack with no missing packet
[all...]
/external/chromium_org/third_party/jinja2/
H A Ddebug.py16 from jinja2.utils import missing, internal_code namespace
211 if name.startswith('l_') and value is not missing:
H A Druntime.py13 from jinja2.utils import Markup, soft_unicode, escape, missing, concat, \
23 'TemplateRuntimeError', 'missing', 'concat', 'escape',
68 if key[:2] == 'l_' and value is not missing:
107 :class:`Undefined` object for missing variables.
459 def __init__(self, hint=None, obj=missing, name=None, exc=UndefinedError):
471 if self._undefined_obj is missing:
544 if self._undefined_obj is missing:
14 internalcode, object_type_repr namespace
H A Dutils.py31 # special singleton representing missing values for the runtime
32 missing = type('MissingType', (), {'__repr__': lambda x: 'missing'})() variable
H A Denvironment.py28 from jinja2.utils import import_string, LRUCache, Markup, missing, \
323 def overlay(self, block_start_string=missing, block_end_string=missing,
324 variable_start_string=missing, variable_end_string=missing,
325 comment_start_string=missing, comment_end_string=missing,
326 line_statement_prefix=missing, line_comment_prefix=missing,
327 trim_blocks=missing, lstrip_block
29 concat, consume, internalcode namespace
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
H A Dnack.h32 // arrived is considered lost, and should be labeled as "missing" (the size of
35 // "late." A "late" packet with sequence number K is changed to "missing" any
87 // Get a list of "missing" packets which have expected time-to-play larger
103 bool missing)
106 is_missing(missing) {}
112 // A guess about the timestamp of the missing packet, it is used for
115 // missing packet. However, the risk of this is low, and in case of such
116 // errors, there will be a minor misestimation in time-to-play of missing
120 // True if the packet is considered missing. Otherwise indicates packet is
157 // update the list. That is; some packets will change from late to missing,
101 NackElement(int initial_time_to_play_ms, uint32_t initial_timestamp, bool missing) argument
[all...]
/external/chromium_org/third_party/skia/src/ports/
H A DSkFontMgr_fontconfig.cpp120 static int get_int(FcPattern* pattern, const char object[], int missing) { argument
123 return missing;
128 static const char* get_string(FcPattern* pattern, const char object[], const char* missing = "") {
131 return missing;
/external/kernel-headers/original/uapi/linux/
H A Dauto_fs4.h106 /* Indirect mount missing and expire requests. */
110 /* Direct mount missing and expire requests */
124 struct autofs_packet_missing missing; member in union:autofs_packet_union
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Dreceive_statistics_impl.cc273 int32_t missing = 0; local
275 missing = (exp_since_last - rec_since_last);
281 static_cast<uint8_t>(255 * missing / exp_since_last);
286 cumulative_loss_ += missing;
/external/opencv/ml/src/
H A Dmlrtrees.cpp361 CvMat sample, missing; local
378 missing = cvMat( 1, dims, CV_8UC1, missing_ptr );
382 sample.data.fl += dims, missing.data.ptr += dims )
391 CV_CALL(predicted_node = tree->predict(&sample, &missing, true));
460 missing = cvMat( 1, dims, CV_8UC1, missing_ptr );
462 sample.data.fl += dims, missing.data.ptr += dims )
469 predct_resp = tree->predict(&sample, &missing, true)->value;
535 float CvRTrees::predict( const CvMat* sample, const CvMat* missing ) const
551 CvDTreeNode* predicted_node = trees[k]->predict( sample, missing );
568 result += trees[k]->predict( sample, missing )
[all...]
H A Dmlboost.cpp452 // compensate for missing values
1056 uchar* missing = data->buf->data.ptr + data->buf->step*2; local
1061 data->get_vectors( subsample_mask, values, missing, 0 );
1062 //data->get_vectors( 0, values, missing, 0 );
1072 _mask.data.ptr = missing;
1074 missing += _mask.cols;
1275 CvMat sample, missing;
1300 "the missing data mask must be 8-bit vector of the same size as input sample" );
1405 missing = cvMat( 1, var_count, CV_8UC1, dst_mask );
1406 _missing = &missing;
[all...]
H A Dmltree.cpp376 // sort all the values, including the missing measurements
418 // replace labels for missing values with -1
678 float* values, uchar* missing,
713 if( missing )
714 memset( missing, 1, count*var_count );
722 uchar* m = missing ? missing + vi : 0;
740 uchar* m = missing ? missing + vi : 0;
1417 // calculate direction (left(-1),right(1),missing(
677 get_vectors( const CvMat* _subsample_idx, float* values, uchar* missing, float* responses, bool get_class_idx ) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11wm.c88 int missing; local
127 missing = 0;
139 missing = 1;
142 if(missing) {
143 /* Some colours were apparently missing, so we just
/external/qemu/hw/android/goldfish/
H A Daudio.c207 int missing = b->length - b->offset; local
208 int avail2 = (avail > missing) ? missing : avail;
/external/chromium_org/base/files/
H A Dfile_util_unittest.cc577 FilePath missing = temp_dir_.path().Append(FPL("missing")); local
578 EXPECT_FALSE(ReadSymbolicLink(missing, &result));
/external/chromium_org/ui/gfx/
H A Drender_text_harfbuzz.cc95 // the glyph exists, i.e. it is not a missing glyph.
518 size_t missing = 0; local
520 missing += (glyphs[i] == kMissingGlyphId) ? 1 : 0;
521 return missing;
/external/guava/guava-tests/lib/
H A Dlibtruth-gwt.jar ... util.Iterator i$ java.util.Set missing Object[] params int n Object[] items java.util. ...
H A Dlibtruth.jar ... util.Iterator i$ java.util.Set missing Object[] params int n Object[] items java.util. ...
/external/chromium_org/third_party/libxml/src/
H A Drelaxng.c5729 int missing = 0; local
5761 if (missing == 0)
5762 missing = 1;
5849 int missing = 0; local
5891 if (missing == 0)
5892 missing = 1;
7932 fprintf(stderr, "callback on %s missing context\n", token);
7938 fprintf(stderr, "callback on %s missing define\n", token);
7944 fprintf(stderr, "callback on %s missing info\n", token);
8147 fprintf(stderr, "callback on %s missing contex
[all...]
/external/libxml2/
H A Drelaxng.c5730 int missing = 0; local
5762 if (missing == 0)
5763 missing = 1;
5850 int missing = 0; local
5892 if (missing == 0)
5893 missing = 1;
7933 fprintf(stderr, "callback on %s missing context\n", token);
7939 fprintf(stderr, "callback on %s missing define\n", token);
7945 fprintf(stderr, "callback on %s missing info\n", token);
8148 fprintf(stderr, "callback on %s missing contex
[all...]

Completed in 1296 milliseconds

12