HomeSort by relevance Sort by last modified time
    Searched defs:length (Results 276 - 300 of 6987) sorted by null

<<11121314151617181920>>

  /external/syslinux/memdisk/
acpi.h 38 /** Length of table, in bytes, including header */
39 uint32_t length; member in struct:acpi_description_header
  /external/tcpdump/
print-ap1394.c 46 * Length of that header; note that some compilers may pad
59 ap1394_hdr_print(netdissect_options *ndo, register const u_char *bp, u_int length)
79 ND_PRINT((ndo, ", length %u: ", length));
85 * 'h->len' is the length of the packet off the wire, and 'h->caplen'
91 u_int length = h->len; local
103 ap1394_hdr_print(ndo, p, length);
105 length -= FIREWIRE_HDRLEN;
115 if (ethertype_print(ndo, ether_type, p, length, caplen, &src, &dst) == 0) {
118 ap1394_hdr_print(ndo, (const u_char *)fp, length + FIREWIRE_HDRLEN)
    [all...]
print-enc.c 92 register u_int length = h->len; local
113 length -= ENC_HDRLEN;
119 ip_print(ndo, p, length);
123 ip6_print(ndo, p, length);
print-openflow.c 71 const uint16_t length, const uint32_t xid)
73 ND_PRINT((ndo, "\n\tversion unknown (0x%02x), type 0x%02x, length %u, xid 0x%08x",
74 version, type, length, xid));
82 uint16_t length; local
95 /* length */
97 length = EXTRACT_16BITS(cp);
103 /* Message length includes the header length and a message always includes
104 * the basic header. A message length underrun fails decoding of the rest of
108 if (length < OF_HEADER_LEN)
    [all...]
print-pflog.c 111 u_int length = h->len; local
117 /* check length */
125 if (hdr->length < MIN_PFLOG_HDRLEN) {
126 ND_PRINT((ndo, "[pflog: invalid header length!]"));
127 return (hdr->length); /* XXX: not really */
129 hdrlen = BPF_WORDALIGN(hdr->length);
143 length -= hdrlen;
152 ip_print(ndo, p, length);
162 ip6_print(ndo, p, length);
print-sunatm.c 62 * 'h->len' is the length of the packet off the wire, and 'h->caplen'
70 u_int length = h->len; local
104 length -= PKT_BEGIN_POS;
105 atm_print(ndo, vpi, vci, traftype, p, length, caplen);
  /external/tensorflow/tensorflow/core/lib/strings/
stringprintf.cc 67 int length = result + 1; local
68 char* buf = new char[length];
72 result = vsnprintf(buf, length, format, backup_ap);
75 if (result >= 0 && result < length) {
  /external/tensorflow/tensorflow/core/util/
memmapped_file_system.h 108 FileRegion(uint64 o, uint64 l) : offset(o), length(l) {}
111 uint64 length; // Length of the region. member in struct:tensorflow::MemmappedFileSystem::FileRegion
saved_tensor_slice_util.cc 40 slice.length(d));
72 int64 start, length; local
78 &length)) {
79 return errors::Internal("Failed to parse length: src = ", src);
81 if (length >= 0) {
84 slice->set_length(d, length);
  /external/tensorflow/tensorflow/java/src/main/native/
tensorflow_jni.cc 30 jint length = static_cast<int>(buf->length); local
31 jbyteArray ret = env->NewByteArray(length);
32 env->SetByteArrayRegion(ret, 0, length, static_cast<const jbyte*>(buf->data));
58 if (buf.length > std::numeric_limits<jint>::max()) {
63 auto ret_len = static_cast<jint>(buf.length);
  /external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/op/
OperandsTest.java 42 assertEquals(list.size(), array.length);
  /external/v8/src/
allocation.cc 36 int length = StrLength(str); local
37 char* result = NewArray<char>(length + 1);
38 MemCopy(result, str, length);
39 result[length] = '\0';
45 int length = StrLength(str); local
46 if (n < length) length = n;
47 char* result = NewArray<char>(length + 1);
48 MemCopy(result, str, length);
49 result[length] = '\0'
    [all...]
unicode-inl.h 45 int length = T::Convert(c, n, result, &allow_caching); local
47 if (length == 1) {
55 return length;
113 uchar Utf8::ValueOf(const byte* bytes, size_t length, size_t* cursor) {
114 if (length <= 0) return kBadChar;
121 return CalculateValue(bytes, length, cursor);
124 unsigned Utf8::Length(uchar c, int previous) {
  /external/v8/src/builtins/
builtins-arraybuffer.cc 17 // ES6 section 24.1.2.1 ArrayBuffer ( length ) for the [[Call]] case.
28 // ES6 section 24.1.2.1 ArrayBuffer ( length ) for the [[Construct]] case.
33 Handle<Object> length = args.atOrUndefined(isolate, 1); local
38 Object::ToInteger(isolate, length));
85 DCHECK_EQ(2, args.length());
  /external/v8/src/heap/
array-buffer-tracker-inl.h 17 size_t length = NumberToSize(buffer->byte_length());
27 tracker->Add(buffer, length);
32 ->AdjustAmountOfExternalAllocatedMemory(length);
40 size_t length = 0; local
45 length = tracker->Remove(buffer);
47 heap->update_external_memory(-static_cast<intptr_t>(length));
  /external/v8/src/libplatform/tracing/
trace-object.cc 27 size_t length = strlen(*member) + 1; local
28 strncpy(*buffer, *member, length);
30 *buffer += length;
  /external/v8/src/parsing/
token.cc 29 uint8_t length(const char* str) { function in namespace:v8::internal
32 #define T(name, string, precedence) length(string),
  /external/webrtc/webrtc/common_audio/signal_processing/
complex_bit_reverse.c 57 int length = 112; local
61 length = 240;
66 for (m = 0; m < length; m += 2) {
  /external/webrtc/webrtc/modules/audio_processing/beamformer/
covariance_matrix_generator.cc 31 const size_t length = x.num_columns(); local
34 for (size_t i = 0u; i < length; ++i) {
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtp_header_extension.h 32 : type(extension_type), length(0), active(true) {
37 : type(extension_type), length(0), active(active) {
47 length = kTransmissionTimeOffsetLength;
50 length = kAudioLevelLength;
53 length = kAbsoluteSendTimeLength;
56 length = kVideoRotationLength;
59 length = kTransportSequenceNumberLength;
67 uint8_t length; member in struct:webrtc::HeaderExtension
rtp_packet_history.h 49 // packet_length: returns the copied packet length on success.
99 size_t length = 0; member in struct:webrtc::RTPPacketHistory::StoredPacket
  /external/webrtc/webrtc/test/
rtp_file_reader.h 26 size_t length; member in struct:webrtc::test::RtpPacket
27 // The length the packet had on wire. Will be different from |length| when
  /external/zopfli/src/zopfli/
cache.c 30 lmc->length = (unsigned short*)malloc(sizeof(unsigned short) * blocksize);
35 /* length > 0 and dist 0 is invalid combination, which indicates on purpose
37 for (i = 0; i < blocksize; i++) lmc->length[i] = 1;
43 free(lmc->length);
49 size_t pos, size_t length,
61 if (length < 3) return;
62 for (i = 3; i <= length; i++) {
63 if (i == length || sublen[i] != sublen[i + 1]) {
73 assert(bestlength == length);
76 assert(bestlength <= length);
94 unsigned length = cache[j * 3] + 3; local
    [all...]
  /frameworks/av/drm/common/
DrmConstraints.cpp 33 int length = strlen(value); local
34 char* charValue = new char[length + 1];
36 strncpy(charValue, value, length);
37 charValue[length] = '\0';
DrmMetadata.cpp 28 int length = strlen(value); local
29 char* charValue = new char[length + 1];
31 memcpy(charValue, value, length);
32 charValue[length] = '\0';

Completed in 2945 milliseconds

<<11121314151617181920>>