HomeSort by relevance Sort by last modified time
    Searched refs:bytes (Results 276 - 300 of 2355) sorted by null

<<11121314151617181920>>

  /external/libvterm/src/
parser.c 26 // Extract leader bytes 0x3c to 0x3f
87 fprintf(stderr, "libvterm: TODO unhandled CSI bytes \"%.*s\"\n", (int)(arglen - i), args + i);
110 fprintf(stderr, "Truncating strbuffer preserve to %zd bytes\n", len);
190 void vterm_push_bytes(VTerm *vt, const char *bytes, size_t len)
205 string_start = bytes;
209 #define ENTER_STRING_STATE(st) do { vt->parser_state = st; string_start = bytes + pos + 1; } while(0)
213 unsigned char c = bytes[pos];
217 append_strbuffer(vt, string_start, bytes + pos - string_start);
218 string_start = bytes + pos + 1;
241 append_strbuffer(vt, string_start, bytes + pos - string_start)
    [all...]
  /external/chromium_org/chromeos/cryptohome/
cryptohome_parameters.cc 85 if (other.bytes)
86 bytes.reset(new std::string(*other.bytes));
95 const std::string& bytes)
97 bytes(new std::string(bytes)) {
103 bytes.reset(other.bytes ? new std::string(*other.bytes) : NULL);
112 const bool has_bytes = bytes;
    [all...]
  /external/chromium_org/mojo/android/javatests/src/org/chromium/mojo/system/impl/
CoreImplTest.java 95 // Writing a random 8 bytes message.
96 byte[] bytes = new byte[8];
97 random.nextBytes(bytes);
98 ByteBuffer buffer = ByteBuffer.allocateDirect(bytes.length);
99 buffer.put(bytes);
103 ByteBuffer receiveBuffer = ByteBuffer.allocateDirect(bytes.length / 2);
107 assertEquals(bytes.length, result.getMessageSize());
111 receiveBuffer = ByteBuffer.allocateDirect(bytes.length);
114 assertEquals(bytes.length, result.getMessageSize());
120 assertTrue(Arrays.equals(bytes, receivedBytes))
    [all...]
  /external/blktrace/btt/
trace_queue.c 32 update_q_histo(q_iop->t.bytes);
46 if (q_iop->t.bytes == 0)
  /external/chromium_org/base/memory/
discardable_memory_ashmem.cc 13 size_t bytes,
16 : bytes_(bytes),
  /external/chromium_org/content/browser/webui/
url_data_source_impl.h 56 // Report that a request has resulted in the data |bytes|.
57 // If the request can't be satisfied, pass NULL for |bytes| to indicate
59 virtual void SendResponse(int request_id, base::RefCountedMemory* bytes);
76 scoped_refptr<base::RefCountedMemory> bytes);
  /external/chromium_org/content/common/
resource_request_body.cc 13 void ResourceRequestBody::AppendBytes(const char* bytes, int bytes_len) {
16 elements_.back().SetToBytes(bytes, bytes_len);
  /external/chromium_org/crypto/
ghash.h 44 // Finish completes the hash computation and writes at most |len| bytes of
70 // UpdateBlocks processes |num_blocks| 16-bytes blocks from |bytes|.
71 void UpdateBlocks(const uint8* bytes, size_t num_blocks);
72 // Update processes |length| bytes from |bytes| and calls UpdateBlocks on as
74 // always consumes all of |bytes|.
75 void Update(const uint8* bytes, size_t length);
  /external/chromium_org/mojo/public/c/system/
message_pipe.h 101 // with message data specified by |bytes| of size |num_bytes| and attached
103 // by |flags|. If there is no message data, |bytes| may be null, in which case
130 const void* bytes, // Optional.
138 // discard the next message. |bytes|/|*num_bytes| indicate the buffer/buffer
145 // of bytes and number of attached handles in the "next" message, respectively,
146 // whether that message was read or not. (If null, the number of bytes/handles
149 // If |bytes| is null, then |*num_bytes| must be zero, and similarly for
162 // message/attached handles (|bytes|/|*num_bytes| or
169 void* bytes, // Optional out.
  /external/chromium_org/net/base/
upload_bytes_element_reader.h 17 // An UploadElementReader implementation for bytes.
22 UploadBytesElementReader(const char* bytes, uint64 length);
25 const char* bytes() const { return bytes_; } function in class:net::UploadBytesElementReader
  /external/chromium_org/net/tools/flip_server/
ring_buffer.cc 30 // Appends up-to-'size' bytes to the ringbuffer.
31 int RingBuffer::Write(const char* bytes, int size) {
44 memcpy(wptr, bytes + bytes_written, wsize);
52 const char* p = bytes;
59 const char* end = bytes + bytes_to_write;
102 // returns the number of bytes read into
103 int RingBuffer::Read(char* bytes, int size) {
116 memcpy(bytes + bytes_read, rptr, rsize);
124 char* p = bytes;
130 char* end = bytes + bytes_to_read
    [all...]
ring_buffer.h 49 // appends up-to-'size' bytes to the ringbuffer.
50 virtual int Write(const char* bytes, int size) OVERRIDE;
54 // If there are no writable bytes available, then *size will contain 0.
59 // If there are no readable bytes available, then *size will contain 0.
62 // Returns the number of bytes read into 'bytes'.
63 virtual int Read(char* bytes, int size) OVERRIDE;
68 // Reserves contiguous writable empty space in the buffer of size bytes.
  /external/chromium_org/ppapi/cpp/private/
x509_certificate_private.cc 39 bool X509CertificatePrivate::Initialize(const char* bytes, uint32_t length) {
44 bytes,
  /external/chromium_org/ppapi/thunk/
ppb_x509_certificate_private_thunk.cc 32 const char *bytes,
37 return enter.object()->Initialize(bytes, length);
  /external/chromium_org/third_party/WebKit/Source/platform/
TestingPlatformSupport.cpp 78 blink::WebDiscardableMemory* TestingPlatformSupport::allocateAndLockDiscardableMemory(size_t bytes)
80 return !m_config.hasDiscardableMemorySupport ? 0 : new TestingDiscardableMemory(bytes);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
loader.cpp 23 unsigned char * bytes; local
34 radeon_llvm_compile(wrap(mod), &bytes, &byte_count, TargetGPUName.c_str(), 1); local
  /external/chromium_org/third_party/webrtc/modules/video_processing/main/test/unit_test/
readYUV420file.m 12 % nPx bytes luminance, nPx/4 bytes U, nPx/4 bytes V
17 fileLen=ftell(fid); % number of bytes
  /external/emma/core/java12/com/vladium/jcd/cls/attribute/
SourceFileAttribute_info.java 85 final UDataInputStream bytes)
90 m_sourcefile_index = bytes.readU2 ();
  /external/emma/core/java12/com/vladium/jcd/cls/constant/
CONSTANT_Class_info.java 88 protected CONSTANT_Class_info (final UDataInputStream bytes) throws IOException
90 m_name_index = bytes.readU2 ();
CONSTANT_Double_info.java 81 protected CONSTANT_Double_info (final UDataInputStream bytes) throws IOException
83 m_value = bytes.readDouble ();
CONSTANT_Float_info.java 21 * The bytes item of the CONSTANT_Float_info structure contains the value of
72 protected CONSTANT_Float_info (final UDataInputStream bytes) throws IOException
74 m_value = bytes.readFloat ();
CONSTANT_Integer_info.java 21 * The bytes item of the CONSTANT_Integer_info structure contains the value of
22 * the int constant. The bytes of the value are stored in big-endian (high byte
73 protected CONSTANT_Integer_info (final UDataInputStream bytes) throws IOException
75 m_value = bytes.readInt ();
CONSTANT_Long_info.java 23 * (( long ) high_bytes << 32) + low_bytes , where the bytes of each of high_bytes
82 protected CONSTANT_Long_info (final UDataInputStream bytes) throws IOException
84 m_value = bytes.readLong ();
CONSTANT_Utf8_info.java 20 * The bytes of multibyte characters are stored in the class file in big-endian
77 protected CONSTANT_Utf8_info (final UDataInputStream bytes) throws IOException
79 m_value = bytes.readUTF ();
  /external/flac/libFLAC/include/private/
ogg_decoder_aspect.h 54 ogg_packet working_packet; /* as we work through the packet we will move working_packet.packet forward and working_packet.bytes down */
75 typedef FLAC__OggDecoderAspectReadStatus (*FLAC__OggDecoderAspectReadCallbackProxy)(const void *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data);
77 FLAC__OggDecoderAspectReadStatus FLAC__ogg_decoder_aspect_read_callback_wrapper(FLAC__OggDecoderAspect *aspect, FLAC__byte buffer[], size_t *bytes, FLAC__OggDecoderAspectReadCallbackProxy read_callback, const FLAC__StreamDecoder *decoder, void *client_data);

Completed in 1375 milliseconds

<<11121314151617181920>>