HomeSort by relevance Sort by last modified time
    Searched defs:pos1 (Results 1 - 25 of 56) sorted by null

1 2 3

  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
d1035pf.cpp 134 Word16 i, j, pos1, pos2, sign, tmp;
152 pos1 = add (i, j); // position of pulse "j"
164 cod[pos1] = sign;
174 if (sub (pos2, pos1) < 0)
212 register Word16 i, j, pos1, pos2; local
231 pos1 = i + j; /* position of pulse "j" */
244 *(cod + pos1) = sign;
255 if (pos2 < pos1)
d8_31pf.cpp 566 Word16 pos1; local
589 pos1 = (linear_codewords[j] << 2) + j;
601 if (pos1 < L_SUBFR)
603 cod[pos1] = sign; /* avoid buffer overflow */
612 if (pos2 < pos1)
  /external/oprofile/libutil++/
child_reader.h 94 ssize_t pos1; member in class:child_reader
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
dec_alg_codebook.cpp 120 int16 pos1; local
127 pos1 = ((index & mask) + offset);
133 pos1 += NB_POS;
135 pos[0] = pos1;
147 int16 pos1, pos2, tmp; local
154 /* pos1 = (((index >> N) & mask) + offset); */
155 pos1 = (int16)(add_int32((shr_int32(index, N) & mask), (int32)(offset)));
160 if (pos2 < pos1) /* ((pos2 - pos1) < 0) */
164 pos1 += NB_POS; /* pos1 += NB_POS; *
    [all...]
  /external/chromium_org/media/audio/linux/
alsa_util.cc 49 size_t pos1 = device_name.find(':'); local
50 if (pos1 == std::string::npos) {
58 device_name.substr(pos1) :
59 kMixerPrefix + device_name.substr(pos1, pos2 - pos1);
  /external/chromium_org/third_party/freetype/src/truetype/
ttpload.c 177 FT_ULong pos1, pos2; local
182 pos1 = pos2 = 0;
191 pos1 = FT_NEXT_ULONG( p );
192 pos2 = pos1;
202 pos1 = FT_NEXT_USHORT( p );
203 pos2 = pos1;
208 pos1 <<= 1;
214 if ( pos1 >= face->glyf_len )
219 pos1, gindex, face->glyf_len ));
241 if ( pos2 >= pos1 )
    [all...]
  /external/chromium_org/v8/test/cctest/
test-liveedit.cc 67 : pos1(pos1_param), pos2(pos2_param),
69 int pos1; member in class:__anon17112::DiffChunkStruct
84 void AddChunk(int pos1, int pos2, int len1, int len2) {
85 current_chunk_ = new(zone_) DiffChunkStruct(pos1, pos2, len1, len2);
110 int pos1 = 0; local
118 int diff_pos1 = chunk->pos1;
119 int similar_part_length = diff_pos1 - pos1;
125 ASSERT(pos1 + j < len1);
127 ASSERT_EQ(s1[pos1 + j], s2[pos2 + j]);
130 pos1 = diff_pos1 + chunk->len1
    [all...]
  /external/freetype/src/truetype/
ttpload.c 177 FT_ULong pos1, pos2; local
182 pos1 = pos2 = 0;
191 pos1 = FT_NEXT_ULONG( p );
192 pos2 = pos1;
202 pos1 = FT_NEXT_USHORT( p );
203 pos2 = pos1;
208 pos1 <<= 1;
214 if ( pos1 > face->glyf_len )
219 pos1, gindex, face->glyf_len ));
241 if ( pos2 >= pos1 )
    [all...]
  /external/icu4c/samples/uciter8/
uciter8.c 47 int32_t i, pos1, pos2, middle, length; local
61 pos1=iter1->move(iter1, middle, UITER_ZERO);
62 if(pos1!=middle) {
63 log_err("%s->move(from 0 to middle %d)=%d does not move to the middle\n", n1, middle, pos1);
102 pos1=iter1->move(iter1, 0, UITER_START);
103 if(pos1<0) {
141 pos1=iter1->move(iter1, middle, UITER_ZERO);
142 if(pos1!=middle) {
143 log_err("%s->move(from end to middle %d)=%d does not move to the middle\n", n1, middle, pos1);
154 pos1=iter1->move(iter1, 1, UITER_ZERO)
    [all...]
  /external/v8/test/cctest/
test-liveedit.cc 67 : pos1(pos1_param), pos2(pos2_param),
69 int pos1; member in class:__anon28837::DiffChunkStruct
83 void AddChunk(int pos1, int pos2, int len1, int len2) {
84 current_chunk_ = new DiffChunkStruct(pos1, pos2, len1, len2);
108 int pos1 = 0; local
116 int diff_pos1 = chunk->pos1;
117 int similar_part_length = diff_pos1 - pos1;
123 ASSERT(pos1 + j < len1);
125 ASSERT_EQ(s1[pos1 + j], s2[pos2 + j]);
128 pos1 = diff_pos1 + chunk->len1
    [all...]
  /external/chromium_org/sandbox/win/tests/validation_tests/
commands.cc 33 std::wstring::size_type pos1 = string->find_first_not_of(L'"'); local
36 if (std::wstring::npos == pos1 || std::wstring::npos == pos2)
39 (*string) = string->substr(pos1, pos2 + 1);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_pipe_wide_line.c 73 float *pos1 = v1->data[pos]; local
95 pos1[1] = pos1[1] + half_width - bias;
102 pos1[0] -= 0.5f;
109 pos1[0] += 0.5f;
118 pos1[0] = pos1[0] + half_width + bias;
125 pos1[1] -= 0.5f;
132 pos1[1] += 0.5f;
draw_pipe_stipple.c 127 const float *pos1 = v1->data[pos]; local
132 float x1 = pos1[0];
134 float y1 = pos1[1];
draw_pipe_wide_point.c 138 float *pos1 = v1->data[pos]; local
159 pos1[0] += left_adj;
160 pos1[1] += bot_adj;
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_wide_line.c 73 float *pos1 = v1->data[pos]; local
95 pos1[1] = pos1[1] + half_width - bias;
102 pos1[0] -= 0.5f;
109 pos1[0] += 0.5f;
118 pos1[0] = pos1[0] + half_width + bias;
125 pos1[1] -= 0.5f;
132 pos1[1] += 0.5f;
draw_pipe_stipple.c 127 const float *pos1 = v1->data[pos]; local
132 float x1 = pos1[0];
134 float y1 = pos1[1];
draw_pipe_wide_point.c 138 float *pos1 = v1->data[pos]; local
159 pos1[0] += left_adj;
160 pos1[1] += bot_adj;
  /external/chromium_org/third_party/libwebp/enc/
syntax.c 305 uint64_t pos1, pos2, pos3; local
310 pos1 = VP8BitWriterPos(bw);
340 enc->pic_->stats->header_bytes[0] = (int)((pos2 - pos1 + 7) >> 3);
  /external/webp/src/enc/
syntax.c 305 uint64_t pos1, pos2, pos3; local
310 pos1 = VP8BitWriterPos(bw);
340 enc->pic_->stats->header_bytes[0] = (int)((pos2 - pos1 + 7) >> 3);
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
lpc_analysis.c 212 int k, n, j, pos1, pos2; local
247 for (pos1 = 0; pos1 < QLOOKAHEAD; pos1++)
248 maskdata->DataBufferLo[pos1 + WINLEN - QLOOKAHEAD] = inLo[pos1];
253 for (pos1 = 0; pos1 < WINLEN - UPDATE/2; pos1++) {
254 maskdata->DataBufferLo[pos1] = maskdata->DataBufferLo[pos1 + UPDATE/2]
393 int frameCntr, activeFrameCntr, n, pos1, pos2; local
    [all...]
  /packages/apps/Nfc/nci/jni/
RouteDataSet.cpp 46 std::string::size_type pos1 = 0; local
56 sscanf (aid.substr(pos1).c_str(), "%x", &num);
63 sscanf (aid.substr(pos1, pos2-pos1+1).c_str(), "%x", &num);
66 pos1 = pos2 + 1;
67 pos2 = aid.find_first_of (delimiter, pos1);
  /external/oprofile/opjitconv/
opjitconv.c 106 struct list_head * pos1, * pos2; local
107 list_for_each_safe(pos1, pos2, list) {
108 struct pathname * pname = list_entry(pos1, struct pathname,
441 struct list_head * pos1, * pos2; local
442 list_for_each_safe(pos1, pos2, anon_dirs) {
443 struct pathname * pname = list_entry(pos1, struct pathname,
483 struct list_head * pos1, * pos2; local
555 list_for_each_safe(pos1, pos2, &jd_fnames) {
557 list_entry(pos1, struct pathname, neighbor);
  /external/chromium_org/third_party/icu/source/test/intltest/
itrbnf.cpp 252 FieldPosition pos1, pos2; local
260 intFormatResult = formatter->format(intFormatNum, ruleSetName, intFormatResult, pos1, status);
284 intFormatResult = formatter->format(intFormatNum, "BLABLA", intFormatResult, pos1, status);
    [all...]
  /external/grub/netboot/
sk_g16.c 170 * If POS0,POS1 contain the following ID, then we know
1111 pos1 = inb(SK_POS1), local
1118 "## pos0=%#hX pos1=%#hX pos2=%#hX pos3=%#hX pos4=%#hX\n",
1119 SK_NAME, text, pos0, pos1, pos2, (pos3<<14), pos4);
  /external/icu4c/test/intltest/
itrbnf.cpp 253 FieldPosition pos1, pos2; local
261 intFormatResult = formatter->format(intFormatNum, ruleSetName, intFormatResult, pos1, status);
285 intFormatResult = formatter->format(intFormatNum, "BLABLA", intFormatResult, pos1, status);
    [all...]

Completed in 727 milliseconds

1 2 3