HomeSort by relevance Sort by last modified time
    Searched defs:cur_pos (Results 1 - 14 of 14) sorted by null

  /external/libxcam/xcore/
file_handle.cpp 107 fpos_t cur_pos; local
110 if (fgetpos (_fp, &cur_pos) < 0)
119 if (fsetpos (_fp, &cur_pos) < 0)
  /external/pdfium/core/fpdfapi/render/
cpdf_textrenderer.cpp 95 float cur_pos = 0; local
99 positions[i - 1] = cur_pos;
100 cur_pos += pFont->GetCharWidthF(codes[i]) * font_size / 1000;
  /external/webrtc/webrtc/modules/audio_coding/neteq/test/
RTPjitter.cc 47 fpos_t cur_pos; local
50 if (!fid || fgetpos(fid, &cur_pos)) {
57 fsetpos(fid, &cur_pos);
  /external/google-breakpad/src/tools/linux/symupload/
sym_upload.cc 69 string::size_type cur_pos = 0, next_pos = 0; local
70 while ((next_pos = source_string.find(c, cur_pos)) != string::npos) {
71 if (next_pos != cur_pos)
72 results->push_back(source_string.substr(cur_pos, next_pos - cur_pos));
73 cur_pos = next_pos + 1;
75 if (cur_pos < source_string.size() && next_pos != cur_pos)
76 results->push_back(source_string.substr(cur_pos));
  /external/grpc-grpc/src/cpp/server/load_reporter/
load_data_store.cc 89 size_t cur_pos = 2; local
90 client_ip_hex_ = client_ip_and_token.substr(cur_pos, ip_hex_size);
91 cur_pos += ip_hex_size;
92 if (client_ip_and_token.size() - cur_pos < kLbIdLength) {
96 lb_id_ = client_ip_and_token.substr(cur_pos, kLbIdLength);
97 lb_tag_ = client_ip_and_token.substr(cur_pos + kLbIdLength);
  /cts/tools/dasm/src/dasm/
Scanner.java 43 private int cur_pos = 0; field in class:Scanner.CharBuffer
53 buffer[cur_pos] = c;
54 cur_pos++;
55 if (cur_pos == buffer_size) expand();
59 return cur_pos;
67 return new String(buffer, 0, cur_pos);
71 cur_pos = 0;
  /external/grpc-grpc/src/core/ext/filters/load_reporting/
server_load_reporting_filter.cc 185 char* cur_pos = client_ip_and_lr_token_; local
188 strncpy(cur_pos, kEmptyAddressLengthString, kLengthPrefixSize);
190 strncpy(cur_pos, kEncodedIpv4AddressLengthString, kLengthPrefixSize);
192 strncpy(cur_pos, kEncodedIpv6AddressLengthString, kLengthPrefixSize);
196 cur_pos += kLengthPrefixSize;
199 strncpy(cur_pos, client_ip, client_ip_len);
202 cur_pos += client_ip_len;
205 strncpy(cur_pos, lr_token, lr_token_len);
207 GPR_ASSERT(cur_pos + lr_token_len - client_ip_and_lr_token_ ==
  /external/openssh/
progressmeter.c 71 static off_t cur_pos; /* transfer position as of last refresh */ variable
132 transferred = *counter - (cur_pos ? cur_pos : start_pos);
133 cur_pos = *counter;
135 bytes_left = end_pos - cur_pos;
174 if (end_pos == 0 || cur_pos == end_pos)
177 percent = ((float)cur_pos / end_pos) * 100;
183 cur_pos);
256 cur_pos = 0;
279 if (cur_pos != end_pos
    [all...]
  /external/webp/src/enc/
backward_references_enc.h 188 PixOrCopy* cur_pos; // current position member in struct:__anon49448
198 return (c->cur_pos != NULL);
206 if (++c->cur_pos == c->last_pos_) VP8LRefsCursorNextBlock(c);
  /external/compiler-rt/lib/profile/
GCDAProfiling.c 83 static uint64_t cur_pos = 0; variable
116 size += cur_pos;
126 memcpy(&write_buffer[cur_pos], s, len);
127 cur_pos += len;
155 val = *(uint32_t*)&write_buffer[cur_pos];
156 cur_pos += 4;
166 val = *(uint64_t*)&write_buffer[cur_pos];
167 cur_pos += 8;
296 cur_pos = 0;
377 uint64_t save_cur_pos = cur_pos;
    [all...]
  /external/harfbuzz_ng/src/
hb-buffer.hh 181 hb_glyph_position_t &cur_pos (unsigned int i = 0) { return pos[idx + i]; } function in struct:hb_buffer_t
182 hb_glyph_position_t cur_pos (unsigned int i = 0) const { return pos[idx + i]; } function in struct:hb_buffer_t
  /external/freetype/src/pshinter/
pshalgo.h 55 FT_Pos cur_pos; member in struct:PSH_HintRec_
  /external/curl/lib/
ftp.c 4105 const char *cur_pos; local
    [all...]
  /art/dex2oat/linker/
image_writer.cc 2602 size_t cur_pos = RoundUp(dex_cache_arrays_section.End(), sizeof(uint64_t)); local
    [all...]

Completed in 2064 milliseconds