Searched defs:width (Results 1 - 25 of 3377) sorted by path

1234567891011>>

/external/aac/libAACenc/src/
H A Dbit_cnt.cpp110 const INT width,
125 for(i=0;i<width;i+=4){
186 const INT width,
201 for(i=0;i<width;i+=4){
257 const INT width,
270 for(i=0;i<width;i+=2){
312 const INT width,
325 for(i=0;i<width;i+=2){
362 const INT width,
374 for(i=0;i<width;
109 FDKaacEnc_count1_2_3_4_5_6_7_8_9_10_11(const SHORT *RESTRICT values, const INT width, INT *bitCount) argument
185 FDKaacEnc_count3_4_5_6_7_8_9_10_11(const SHORT *RESTRICT values, const INT width, INT *bitCount) argument
256 FDKaacEnc_count5_6_7_8_9_10_11(const SHORT *RESTRICT values, const INT width, INT *bitCount) argument
311 FDKaacEnc_count7_8_9_10_11(const SHORT *RESTRICT values, const INT width, INT *bitCount) argument
361 FDKaacEnc_count9_10_11(const SHORT *RESTRICT values, const INT width, INT *bitCount) argument
408 FDKaacEnc_count11(const SHORT *RESTRICT values, const INT width, INT *bitCount) argument
449 FDKaacEnc_countEsc(const SHORT *RESTRICT values, const INT width, INT *RESTRICT bitCount) argument
519 FDKaacEnc_bitCount(const SHORT *values, const INT width, INT maxVal, INT *bitCount) argument
545 FDKaacEnc_countValues(SHORT *RESTRICT values, INT width, INT codeBook) argument
779 FDKaacEnc_codeValues(SHORT *RESTRICT values, INT width, INT codeBook, HANDLE_FDK_BITSTREAM hBitstream) argument
[all...]
H A Dgrp_data.cpp253 int width = sfbOffset[sfb+1]-sfbOffset[sfb]; local
258 for (line = width; line > 0; line--)
/external/aac/libSBRdec/src/
H A Denv_calc.cpp1235 int width = highSubband-lowSubband; local
1237 if ( (width > 0) && (shift!=0) ) {
1240 scaleValues(&re[l][lowSubband], width, shift);
1241 scaleValues(&im[l][lowSubband], width, shift);
1246 scaleValues(&re[l][lowSubband], width, shift);
1271 unsigned int width = highSubband - lowSubband; local
1273 FDK_ASSERT(width <= (64));
1275 if ( width > 0 ) {
1281 maxVal = FDK_get_maxval(maxVal, &re[l][lowSubband], &im[l][lowSubband], width);
1283 int k=width;
[all...]
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3lexer.c455 ANTLR3_INT32 width; local
457 width = ANTLR3_UINT32_CAST(( (pANTLR3_UINT8)(lexer->input->data) + (lexer->input->size(lexer->input) )) - (pANTLR3_UINT8)(ex->index));
459 if (width >= 1)
469 ANTLR3_FPRINTF(stderr, "\t%.*s\n", width > 20 ? 20 : width ,((pANTLR3_UINT8)ex->index));
478 width = ANTLR3_UINT32_CAST(((pANTLR3_UINT8)(lexer->input->data)+(lexer->input->size(lexer->input))) - (pANTLR3_UINT8)(lexer->rec->state->tokenStartCharIndex));
480 if (width >= 1)
482 ANTLR3_FPRINTF(stderr, "looks like this:\n\t\t%.*s\n", width > 20 ? 20 : width ,(pANTLR3_UINT8)(lexer->rec->state->tokenStartCharIndex));
/external/arduino/hardware/arduino/cores/arduino/
H A Dwiring_pulse.c35 // pulse width measuring loop and achieve finer resolution. calling
40 unsigned long width = 0; // keep initialization out of time critical area local
61 width++;
68 return clockCyclesToMicroseconds(width * 21 + 16);
/external/bison/examples/calc++/
H A Dlocation.hh60 /// Construct a 0-width location in \a p.
67 /// Construct a 0-width location in \a f, \a l, \a c.
125 inline const location operator+ (const location& begin, unsigned int width) argument
128 res.columns (width);
133 inline location& operator+= (location& res, unsigned int width) argument
135 res.columns (width);
H A Dposition.hh109 operator+= (position& res, const int width) argument
111 res.columns (width);
117 operator+ (const position& begin, const int width) argument
120 return res += width;
125 operator-= (position& res, const int width) argument
127 return res += -width;
132 operator- (const position& begin, const int width) argument
134 return begin + -width;
/external/bison/lib/
H A Dmbswidth.c61 int width; local
63 width = 0;
91 width++;
112 width++;
125 width++;
140 if (w > INT_MAX - width)
142 width += w;
150 if (width == INT_MAX)
152 width++;
164 return width;
[all...]
H A Dvasnprintf.c1535 arg_type type, int flags, size_t width, int has_precision,
1754 > max (tmp_length, width)
1756 <= tmp_length + width. */
1757 tmp_length = xsum (tmp_length, width);
1760 if (tmp_length < width)
1761 tmp_length = width;
1945 size_t width; local
1950 width = 0;
1962 /* "A negative field width is taken as a '-' flag
1963 followed by a positive field width
1534 MAX_ROOM_NEEDED(const arguments *ap, size_t arg_index, FCHAR_T conversion, arg_type type, int flags, size_t width, int has_precision, size_t precision, int pad_ourselves) argument
2423 size_t width; local
2943 size_t width; local
3450 size_t width; local
4610 size_t width; local
[all...]
/external/bison/src/
H A Dlocation.c39 size_t width; local
46 width = mbsnwidth (buf, bufsize, 0);
49 width = bufsize;
51 return width <= remaining_columns ? column + width : INT_MAX;
H A Doutput.c176 int width = strlen (cp) + 2; local
178 if (j + width > 75)
189 j += width;
H A Dprint.c59 max_length (size_t *width, const char *str)
62 if (len > *width)
63 *width = len;
132 size_t width = 0;
135 /* Compute the width of the lookahead token column. */
141 max_length (&width, sym->tag);
145 if (!width)
149 width += 2;
162 for (j = width - strlen (tag); j > 0; --j)
180 size_t width
58 max_length(size_t *width, const char *str) argument
131 size_t width = 0; local
179 size_t width = 0; local
215 print_reduction(FILE *out, size_t width, const char *lookahead_token, rule *r, bool enabled) argument
245 size_t width = 0; local
[all...]
H A Dtables.c88 static base_number *width; variable
417 width[s] = sp1[-1] - sp[0] + 1;
520 width[symno] = sp1[-1] - sp[0] + 1;
603 int w = width[i];
606 while (j >= 0 && (width[order[j]] < w))
609 while (j >= 0 && (width[order[j]] == w) && (tally[order[j]] < t))
640 w = width[i];
659 if (width[j] != w || tally[j] != t)
828 width = xnmalloc (nvectors, sizeof *width);
[all...]
/external/blktrace/
H A Dblkparse_fmt.c165 int minus, int has_w, int width)
171 sprintf(format, "%%-%d", width);
173 sprintf(format, "%%%d", width);
197 case 'D': /* format width ignored */
218 case 'P': { /* format width ignored */
231 sprintf(format, "%%0%dlu", has_w ? width : 9);
263 int width = 0; local
273 width = (width * 10) + (*p++ - '0');
278 minus, has_w, width);
162 print_field(char *act, struct per_cpu_info *pci, struct blk_io_trace *t, unsigned long long elapsed, int pdu_len, unsigned char *pdu_buf, char field, int minus, int has_w, int width) argument
[all...]
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_sock_util.c188 const int width = 16; local
200 for(j = 0; j < width; j++)
208 for(i = 0; i < size / width; i++)
212 addr = i*width;
216 for(j = 0; j < width; j++)
222 for(j = 0; j < width; j++)
230 int leftover = size % width;
235 addr = i*width;
244 for(; j < width; j++) {
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DLongArray.java1153 // NOTE: This works, but is slower than width 4 processing
1176 * Determine the parameters of the interleaved window algorithm: the 'width' in bits to
1177 * process together, the number of evaluation 'positions' implied by that width, and the
1180 int width, positions, top, banks;
1182 // NOTE: width 4 is the fastest over the entire range of sizes used in current crypto
1183 // width = 1; positions = 64; top = 64; banks = 4;
1184 // width = 2; positions = 32; top = 64; banks = 4;
1185 // width = 3; positions = 21; top = 63; banks = 3;
1186 width = 4; positions = 16; top = 64; banks = 8;
1187 // width
1537 interleave(long[] x, int xOff, long[] z, int zOff, int count, int width) argument
[all...]
H A DTnaf.java19 * The window width of WTNAF. The standard value of 4 is slightly less
485 * Computes the auxiliary value <code>t<sub>w</sub></code>. If the width is
489 * @param w The window width of the WTNAF.
702 * @param width The window width of the resulting WNAF.
703 * @param pow2w 2<sup>width</sup>.
705 * @param alpha The <code>&alpha;<sub>u</sub></code>'s for the window width.
710 byte width, BigInteger pow2w, BigInteger tw, ZTauElement[] alpha)
723 int maxLength = log2Norm > 30 ? log2Norm + 4 + width : 34 + width;
709 tauAdicWNaf(byte mu, ZTauElement lambda, byte width, BigInteger pow2w, BigInteger tw, ZTauElement[] alpha) argument
[all...]
H A DWNafUtil.java47 public static int[] generateCompactWindowNaf(int width, BigInteger k) argument
49 if (width == 2)
54 if (width < 2 || width > 16)
56 throw new IllegalArgumentException("'width' must be in the range [2, 16]");
63 int[] wnaf = new int[k.bitLength() / width + 1];
65 // 2^width and a mask and sign bit set accordingly
66 int pow2 = 1 << width;
97 pos = width;
185 * @param width Th
195 generateWindowNaf(int width, BigInteger k) argument
294 precompute(ECPoint p, int width, boolean includeNegated) argument
[all...]
/external/ceres-solver/examples/
H A Dpgm_image.h53 PGMImage(int width, int height);
60 int width() const;
94 PGMImage<Real>::PGMImage(int width, int height) argument
95 : height_(height), width_(width), data_(width*height, 0.0) {
114 int PGMImage<Real>::width() const { function in class:ceres::examples::PGMImage
189 outputfile << " # <width> <height> <levels> " << std::endl;
/external/chromium_org/android_webview/browser/
H A Dbrowser_view_renderer.cc193 size_t width = last_on_draw_global_visible_rect_.width(); local
195 policy.bytes_limit = kMemoryMultiplier * kBytesPerPixel * width * height;
203 size_t tiles = width * height * kTileMultiplier / g_tile_area;
397 skia::RefPtr<SkPicture> BrowserViewRenderer::CapturePicture(int width, argument
402 if (width <= 0 || height <= 0) {
414 SkCanvas* rec_canvas = recorder.beginRecording(width, height, NULL, 0);
465 void BrowserViewRenderer::OnSizeChanged(int width, int height) { argument
469 "width",
470 width,
477 OnAttachedToWindow(int width, int height) argument
[all...]
H A Dgpu_memory_buffer_factory_impl.cc74 GpuMemoryBufferFactoryImpl::AllocateGpuMemoryBuffer(size_t width, argument
82 long buffer_id = g_gl_draw_functions->create_graphic_buffer(width, height);
87 new GpuMemoryBufferImpl(buffer_id, gfx::Size(width, height)))
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwAutofillClient.java42 private void showAutofillPopup(float x, float y, float width, float height, argument
60 mAutofillPopup.setAnchorRect(x, y, width, height);
H A DAwContents.java2233 public void extractSmartClipData(int x, int y, int width, int height) { argument
2234 if (!isDestroyed()) mContentViewCore.extractSmartClipData(x, y, width, height);
2564 private native long nativeCapturePicture(long nativeAwContents, int width, int height); argument
H A DAwPicture.java47 public Canvas beginRecording(int width, int height) { argument
H A DAwScrollOffsetManager.java118 public void setMaxScrollOffset(int width, int height) { argument
119 mMaxHorizontalScrollOffset = width;
126 public void setContainerViewSize(int width, int height) { argument
127 mContainerViewWidth = width;
382 // TODO(mkosiba): Take scrollbar width into account in the screenRight/screenBotton
396 if (rect.width() > 2 * oneThirdOfScreenHeight) {
414 if (rect.width() > mContainerViewWidth) {

Completed in 1041 milliseconds

1234567891011>>