HomeSort by relevance Sort by last modified time
    Searched defs:pos (Results 251 - 275 of 5226) sorted by null

<<11121314151617181920>>

  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
viddec_pm_flush.c 41 int32_t pos=0, ret = VIDDEC_FW_SUCCESS;/* success */ local
47 workloads_in_input_q = ipc_mq_read_avail(&fwipc->wkld_q[stream_id].mq, (int32_t *)&pos);
48 pos = 0;
50 if(ipc_mq_write_avail(&fwipc->snd_q[stream_id].mq,&pos) >= workloads_in_input_q)
115 pos = 0;
117 if(ipc_mq_read_avail(&fwipc->rcv_q[stream_id].mq, (int32_t *)&pos) != 0)
  /hardware/interfaces/confirmationui/support/src/
cbor.cpp 31 auto pos = state.data_; local
35 *pos++ = getByte(value, 7);
36 *pos++ = getByte(value, 6);
37 *pos++ = getByte(value, 5);
38 *pos++ = getByte(value, 4);
40 *pos++ = getByte(value, 3);
41 *pos++ = getByte(value, 2);
43 *pos++ = getByte(value, 1);
45 *pos++ = value;
  /hardware/qcom/camera/msm8998/QCamera2/stack/common/
cam_queue.h 79 struct cam_list *pos = NULL; local
83 pos = head->next;
84 if (pos != head) {
85 node = member_of(pos, cam_node_t, list);
103 struct cam_list *pos = NULL; local
107 pos = head->next;
109 while(pos != head) {
110 node = member_of(pos, cam_node_t, list);
111 pos = pos->next
    [all...]
  /hardware/qcom/camera/msm8998/QCamera2/stack/mm-camera-test/src/
mm_qcamera_queue.c 112 struct cam_list *pos = NULL; local
117 pos = head->next;
119 pos = head->prev;
121 if (pos != head) {
122 node = member_of(pos, camera_q_node, list);
140 struct cam_list *pos = NULL; local
148 pos = head->next;
150 while(pos != head) {
151 node = member_of(pos, camera_q_node, list);
152 pos = pos->next
    [all...]
  /hardware/qcom/camera/msm8998/QCamera2/stack/mm-jpeg-interface/src/
mm_jpeg_queue.c 69 struct cam_list *pos = NULL; local
81 pos = head->next;
84 cam_list_insert_before_node(&node->list, pos);
96 struct cam_list *pos = NULL; local
102 pos = head->next;
103 if (pos != head) {
104 node = member_of(pos, mm_jpeg_q_node_t, list);
141 struct cam_list *pos = NULL; local
145 pos = head->next;
147 while(pos != head)
170 struct cam_list *pos = NULL; local
    [all...]
  /hardware/qcom/camera/msm8998/QCamera2/util/
QCameraBufferMaps.cpp 175 uint32_t pos = mBufMapList.length++; local
176 mBufMapList.buf_maps[pos].type = pType;
177 mBufMapList.buf_maps[pos].stream_id = pStreamId;
178 mBufMapList.buf_maps[pos].frame_idx = pFrameIndex;
179 mBufMapList.buf_maps[pos].plane_idx = pPlaneIndex;
180 mBufMapList.buf_maps[pos].cookie = pCookie;
181 mBufMapList.buf_maps[pos].fd = pFd;
182 mBufMapList.buf_maps[pos].size = pSize;
183 mBufMapList.buf_maps[pos].buffer = buffer;
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/src/
hevc_utils.cpp 137 uint32 pos = 0; local
145 coef2 = buffer[pos++];
146 coef3 = buffer[pos++];
149 if (pos >= buffer_length) {
156 coef3 = buffer[pos++];
165 nal_len |= buffer[pos++]<<(size_of_nal_length_field<<3);
179 if (pos + 2 > (nal_len + sizeofNalLengthField)) {
184 nalu_type = (buffer[pos] & 0x7E)>>1 ; //=== nal_unit_type
186 DEBUG_PRINT_LOW("@#@# Pos = %x NalType = %x buflen = %u", pos-1, nalu_type, (unsigned int) buffer_length)
    [all...]
  /hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/src/
hevc_utils.cpp 137 uint32 pos = 0; local
145 coef2 = buffer[pos++];
146 coef3 = buffer[pos++];
149 if (pos >= buffer_length) {
156 coef3 = buffer[pos++];
165 nal_len |= buffer[pos++]<<(size_of_nal_length_field<<3);
179 if (pos + 2 > (nal_len + sizeofNalLengthField)) {
184 nalu_type = (buffer[pos] & 0x7E)>>1 ; //=== nal_unit_type
186 DEBUG_PRINT_LOW("@#@# Pos = %x NalType = %x buflen = %u", pos-1, nalu_type, (unsigned int) buffer_length)
    [all...]
  /hardware/qcom/media/msm8998/mm-video-v4l2/vidc/vdec/src/
hevc_utils.cpp 137 uint32 pos = 0; local
145 coef2 = buffer[pos++];
146 coef3 = buffer[pos++];
149 if (pos >= buffer_length) {
156 coef3 = buffer[pos++];
165 nal_len |= buffer[pos++]<<(size_of_nal_length_field<<3);
179 if (pos + 2 > (nal_len + sizeofNalLengthField)) {
184 nalu_type = (buffer[pos] & 0x7E)>>1 ; //=== nal_unit_type
186 DEBUG_PRINT_LOW("@#@# Pos = %x NalType = %x buflen = %u", pos-1, nalu_type, (unsigned int) buffer_length)
    [all...]
  /libcore/luni/src/main/java/libcore/io/
BufferIterator.java 40 public abstract int pos(); method in class:BufferIterator
  /libcore/ojluni/src/main/java/java/io/
ByteArrayInputStream.java 51 * stream; element <code>buf[pos]</code> is
61 * will be <code>buf[pos]</code>.
63 protected int pos; field in class:ByteArrayInputStream
96 * The initial value of <code>pos</code>
105 this.pos = 0;
112 * buffer array. The initial value of <code>pos</code>
125 this.pos = offset;
144 return (pos < count) ? (buf[pos++] & 0xff) : -1;
150 * If <code>pos</code> equals <code>count</code>
    [all...]
StringBufferInputStream.java 58 protected int pos; field in class:StringBufferInputStream
92 return (pos < count) ? (buffer.charAt(pos++) & 0xFF) : -1;
118 if (pos >= count) {
122 int avail = count - pos;
133 b[off++] = (byte)s.charAt(pos++);
150 if (n > count - pos) {
151 n = count - pos;
153 pos += n;
161 * @return the value of <code>count&nbsp;-&nbsp;pos</code>, which is th
    [all...]
  /libcore/ojluni/src/main/java/java/net/
URLDecoder.java 171 int pos = 0; local
186 bytes[pos++] = (byte) v;
199 sb.append(new String(bytes, 0, pos, enc));
  /libcore/ojluni/src/main/java/java/util/zip/
Adler32.java 105 int pos = buffer.position(); local
107 assert (pos <= limit);
108 int rem = limit - pos;
112 adler = updateByteBuffer(adler, ((DirectBuffer)buffer).address(), pos, rem);
114 adler = updateBytes(adler, buffer.array(), pos + buffer.arrayOffset(), rem);
CRC32.java 102 int pos = buffer.position(); local
104 assert (pos <= limit);
105 int rem = limit - pos;
109 crc = updateByteBuffer(crc, ((DirectBuffer)buffer).address(), pos, rem);
111 crc = updateBytes(crc, buffer.array(), pos + buffer.arrayOffset(), rem);
  /libcore/ojluni/src/main/java/sun/nio/fs/
AbstractFileSystemProvider.java 47 int pos = attribute.indexOf(':'); local
48 if (pos == -1) {
52 s[0] = attribute.substring(0, pos++);
53 s[1] = (pos == attribute.length()) ? "" : attribute.substring(pos);
  /libcore/support/src/test/java/tests/support/
Support_ASimpleInputStream.java 18 public int pos; field in class:Support_ASimpleInputStream
36 pos = 0;
41 pos = 0;
59 return len - pos;
67 if (pos < len) {
68 int res = buf[pos];
69 pos++;
Support_ASimpleOutputStream.java 18 public int pos; field in class:Support_ASimpleOutputStream
36 pos = 0;
82 if (pos < size) {
83 buf[pos] = (byte)(oneByte & 255);
84 pos++;
91 byte[] toReturn = new byte[pos];
92 System.arraycopy(buf, 0, toReturn, 0, pos);
97 return new String(buf, 0, pos);
Support_ASimpleReader.java 18 public int pos; field in class:Support_ASimpleReader
36 pos = 0;
52 return len > pos;
60 int available = len - pos;
63 System.arraycopy(buf, pos, dest, offset, readable);
64 pos += readable;
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v4/
ver4_patricia_trie_node_reader.cpp 41 int pos = ptNodePos; local
44 pos -= mBuffer->getOriginalBufferSize();
47 PatriciaTrieReadingUtils::getFlagsAndAdvancePosition(dictBuf, &pos);
50 dictBuf, &pos);
56 dictBuf, flags, MAX_WORD_LENGTH, nullptr /* codePointTable */, codePoints, &pos);
60 terminalIdFieldPos = pos;
64 terminalId = Ver4PatriciaTrieReadingUtils::getTerminalIdAndAdvancePosition(dictBuf, &pos);
66 int childrenPosFieldPos = pos;
71 dictBuf, &pos);
76 pos += mBuffer->getOriginalBufferSize()
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/layers/
parameter_name.h 133 std::string::size_type pos = source_.find(IndexFormatSpecifier); local
135 while (pos != std::string::npos) {
137 pos = source_.find(IndexFormatSpecifier, pos + 1);
  /sdk/avdlauncher/src/source/
avdlauncher.c 76 int ret, pos; local
92 pos = ret - 1;
93 while (pos > 0 && program_dir[pos] != '\\') {
94 --pos;
96 program_dir[pos] = 0;
  /sdk/sdklauncher/src/source/
sdklauncher.c 76 int ret, pos; local
92 pos = ret - 1;
93 while (pos > 0 && program_dir[pos] != '\\') {
94 --pos;
96 program_dir[pos] = 0;
  /system/extras/simpleperf/
cmd_stat_test.cpp 119 size_t pos = s.find("instructions:u"); local
120 ASSERT_NE(s.npos, pos);
121 pos = s.find("instructions:k", pos);
122 ASSERT_NE(s.npos, pos);
123 pos += strlen("instructions:k");
125 ASSERT_NE(s.npos, s.find("instructions", pos));
142 size_t pos = 0; local
144 while((pos = s.find(subs, pos)) != s.npos)
    [all...]
  /system/keymaster/legacy_support/
ecdsa_keymaster1_operation.cpp 50 int pos = begin_params.find(TAG_DIGEST); local
51 if (pos == -1)
53 begin_params[pos].enumerated = KM_DIGEST_NONE;

Completed in 1577 milliseconds

<<11121314151617181920>>