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

1 2 3 4 5 6

  /frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
q_pulse.h 35 Word16 pos1, /* (i) position of the pulse 1 */
40 Word16 pos1, /* (i) position of the pulse 1 */
46 Word16 pos1, /* (i) position of the pulse 1 */
  /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/bison/examples/calc++/
position.hh 139 operator== (const position& pos1, const position& pos2)
141 return (pos1.line == pos2.line
142 && pos1.column == pos2.column
143 && (pos1.filename == pos2.filename
144 || (pos1.filename && pos2.filename
145 && *pos1.filename == *pos2.filename)));
150 operator!= (const position& pos1, const position& pos2)
152 return !(pos1 == pos2);
  /external/chromium_org/third_party/webrtc/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...]
  /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...]
  /external/chromium_org/v8/test/cctest/
test-liveedit.cc 65 : pos1(pos1_param), pos2(pos2_param),
67 int pos1; member in class:__anon1112::DiffChunkStruct
82 void AddChunk(int pos1, int pos2, int len1, int len2) {
83 current_chunk_ = new(zone_) 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 DCHECK(pos1 + j < len1);
125 DCHECK_EQ(s1[pos1 + j], s2[pos2 + j]);
128 pos1 = diff_pos1 + chunk->len1
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
q_pulse.c 52 Word16 pos1, /* (i) position of the pulse 1 */
62 if (((pos2 ^ pos1) & NB_POS) == 0)
65 if(pos1 <= pos2) /* ((pos1 - pos2) <= 0) */
67 /* index = ((pos1 & mask) << N) + (pos2 & mask); */
68 index = L_deposit_l(add1((((Word16) (pos1 & mask)) << N), ((Word16) (pos2 & mask))));
71 /* ((pos2 & mask) << N) + (pos1 & mask); */
72 index = L_deposit_l(add1((((Word16) (pos2 & mask)) << N), ((Word16) (pos1 & mask))));
74 if ((pos1 & NB_POS) != 0)
82 if (vo_sub((Word16) (pos1 & mask), (Word16) (pos2 & mask)) <= 0
    [all...]
  /external/chromium_org/v8/test/mjsunit/
debug-liveedit-diff.js 36 var pos1 = 0;
44 var similar_length = diff_array[i] - pos1;
45 assertEquals(s1.substring(pos1, pos1 + similar_length),
48 print(s1.substring(pos1, pos1 + similar_length));
49 pos1 += similar_length;
51 print("<<< " + pos1 + " " + diff_array[i + 1]);
52 print(s1.substring(pos1, diff_array[i + 1]));
56 pos1 = diff_array[i + 1]
    [all...]
  /external/oprofile/libutil++/
child_reader.cpp 30 pos1(0), end1(0),
172 if (pos1 >= end1) {
173 pos1 = 0;
178 ssize_t temp_pos = pos1;
186 result.append(&buf1[pos1], (temp_pos - pos1) - !ok);
197 pos1 = temp_pos;
child_reader.h 94 ssize_t pos1; member in class:child_reader
  /external/chromium_org/third_party/icu/source/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/icu/icu4c/source/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...]
  /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/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/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/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/truetype/
ttpload.c 178 FT_ULong pos1, pos2; local
183 pos1 = pos2 = 0;
193 pos1 = FT_NEXT_ULONG( p );
194 pos2 = pos1;
204 pos1 = FT_NEXT_USHORT( p );
205 pos2 = pos1;
210 pos1 <<= 1;
216 if ( pos1 > face->glyf_len )
221 pos1, gindex, face->glyf_len ));
243 if ( pos2 >= pos1 )
    [all...]
  /development/samples/Support7Demos/src/com/example/android/supportv7/widget/adapter/
SimpleStringAdapter.java 65 public void swap(int pos1, int pos2) {
66 String tmp = mValues.get(pos1);
67 mValues.set(pos1, mValues.get(pos2));
69 notifyItemRemoved(pos1);
  /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;
  /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;
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
lpc_masking_model.c 551 int pos1, pos2; local
620 for (pos1 = 0; pos1 < QLOOKAHEAD; pos1++) {
621 maskdata->DataBufferLoQ0[pos1 + WINLEN - QLOOKAHEAD] = inLoQ0[pos1];
627 for (pos1 = 0; pos1 < WINLEN - UPDATE/2; pos1++) {
628 maskdata->DataBufferLoQ0[pos1] = maskdata->DataBufferLoQ0[pos1 + UPDATE/2]
    [all...]
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
lpc_masking_model.c 551 int pos1, pos2; local
620 for (pos1 = 0; pos1 < QLOOKAHEAD; pos1++) {
621 maskdata->DataBufferLoQ0[pos1 + WINLEN - QLOOKAHEAD] = inLoQ0[pos1];
627 for (pos1 = 0; pos1 < WINLEN - UPDATE/2; pos1++) {
628 maskdata->DataBufferLoQ0[pos1] = maskdata->DataBufferLoQ0[pos1 + UPDATE/2]
    [all...]
  /external/bison/data/
location.cc 119 operator== (const position& pos1, const position& pos2)
121 return (pos1.line == pos2.line
122 && pos1.column == pos2.column
123 && (pos1.filename == pos2.filename
124 || (pos1.filename && pos2.filename
125 && *pos1.filename == *pos2.filename)));
130 operator!= (const position& pos1, const position& pos2)
132 return !(pos1 == pos2);
  /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/media/audio/alsa/
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);

Completed in 855 milliseconds

1 2 3 4 5 6