HomeSort by relevance Sort by last modified time
    Searched refs:rd (Results 176 - 200 of 329) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/apache-http/src/org/apache/commons/logging/
LogFactory.java 510 BufferedReader rd; local
512 rd = new BufferedReader(new InputStreamReader(is, "UTF-8"));
514 rd = new BufferedReader(new InputStreamReader(is));
517 String factoryClassName = rd.readLine();
518 rd.close();
    [all...]
  /external/kernel-headers/original/uapi/asm-mips/asm/
inst.h 529 BITFIELD_FIELD(unsigned int rd : 5,
539 BITFIELD_FIELD(unsigned int rd : 5,
550 BITFIELD_FIELD(unsigned int rd : 5,
725 BITFIELD_FIELD(unsigned int rd : 5,
736 BITFIELD_FIELD(unsigned int rd : 5,
  /prebuilts/ndk/9/platforms/android-19/arch-mips64/usr/include/asm/
inst.h 482 BITFIELD_FIELD(unsigned int rd : 5,
494 BITFIELD_FIELD(unsigned int rd : 5,
506 BITFIELD_FIELD(unsigned int rd : 5,
695 BITFIELD_FIELD(unsigned int rd : 5,
707 BITFIELD_FIELD(unsigned int rd : 5,
  /external/chromium_org/v8/src/arm/
assembler-arm.cc 420 // ldr rd, [pc, #offset]
423 // ldr rd, [pp, #offset]
452 // A mask for the Rd register for push, pop, ldr, str instructions.
675 // ldr<cond> <Rd>, [pc +/- offset_12].
682 // ldr<cond> <Rd>, [pp +/- offset_12].
    [all...]
assembler-arm.h     [all...]
  /bionic/libc/dns/resolv/
res_mkquery.c 148 hp->rd = (statp->options & RES_RECURSE) != 0U;
  /external/chromium_org/v8/test/mjsunit/
array-pop.js 42 assertEquals(3, a.pop(1, 2), "3rd pop");
43 assertEquals(4, a.length, "length 3rd pop");
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_pixels.c 318 int rd, gd, bd; local
324 rd = pal->colors[i].r - r;
327 distance = (rd*rd)+(gd*gd)+(bd*bd);
  /art/compiler/dex/quick/arm64/
arm64_lir.h 135 rd##nr = RegStorage::k64BitSolo | RegStorage::kFloatingPoint | nr,
166 constexpr RegStorage rs_d##nr(RegStorage::kValid | rd##nr);
232 kA64Adc3rrr = kA64First, // adc [00011010000] rm[20-16] [000000] rn[9-5] rd[4-0].
233 kA64Add4RRdT, // add [s001000100] imm_12[21-10] rn[9-5] rd[4-0].
234 kA64Add4rrro, // add [00001011000] rm[20-16] imm_6[15-10] rn[9-5] rd[4-0].
235 kA64Add4RRre, // add [00001011001] rm[20-16] option[15-13] imm_3[12-10] rn[9-5] rd[4-0].
236 kA64Adr2xd, // adr [0] immlo[30-29] [10000] immhi[23-5] rd[4-0].
237 kA64And3Rrl, // and [00010010] N[22] imm_r[21-16] imm_s[15-10] rn[9-5] rd[4-0].
238 kA64And4rrro, // and [00001010] shift[23-22] [N=0] rm[20-16] imm_6[15-10] rn[9-5] rd[4-0].
239 kA64Asr3rrd, // asr [0001001100] immr[21-16] imms[15-10] rn[9-5] rd[4-0]
    [all...]
  /art/compiler/utils/arm64/
assembler_arm64.cc 72 void Arm64Assembler::AddConstant(Register rd, int32_t value, Condition cond) {
73 AddConstant(rd, rd, value, cond);
76 void Arm64Assembler::AddConstant(Register rd, Register rn, int32_t value,
80 ___ Add(reg_x(rd), reg_x(rn), value);
82 // temp = rd + value
83 // rd = cond ? temp : rn
85 temps.Exclude(reg_x(rd), reg_x(rn));
88 ___ Csel(reg_x(rd), temp, reg_x(rd), COND_OP(cond))
    [all...]
assembler_arm64.h 235 void AddConstant(Register rd, int32_t value, Condition cond = AL);
236 void AddConstant(Register rd, Register rn, int32_t value, Condition cond = AL);
  /external/bluetooth/bluedroid/btif/src/
btif_config_util.cpp 644 char rep_desc[line_size + 1], rd[line_size/2 + 1]; local
653 hex2bytes(rep_desc, rep_desc_len* 2, rd);
657 btif_config_set("Remote", bd_addr, "HidDescriptor", rd, rep_desc_len,
672 char rep_desc[(rep_desc_len * 2) + 1], rd[rep_desc_len + 1]; local
675 hex2bytes(rep_desc, rep_desc_len * 2, rd);
679 btif_config_set("Remote", bd_addr, "HidDescriptor", rd, rep_desc_len,
    [all...]
  /external/icu/icu4c/source/extra/uconv/
uconv.cpp 606 size_t rd, wr; local
733 rd = 0;
739 infoffset += rd;
741 rd = fread(buf, 1, bufsz, infile);
761 flush = (UBool)(rd != bufsz);
773 buf + rd, useOffsets ? fromoffsets : NULL, flush, &err);
    [all...]
  /prebuilts/devtools/tools/lib/
traceview.jar 
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/playback/linux/
main.c 853 size_t sz, rd; local
856 rd = fread(&sz, sizeof(size_t), 1, fc);
857 if (rd == sizeof(size_t)) {
  /external/opencv/cxcore/src/
cxutils.cpp 647 double *ad = 0, *rd = 0; local
673 rd = (double*)cvStackAlloc(n*sizeof(ad[0]));
675 rd = r->data.db;
677 icvFindPolynomialRoots( ad, rd, n, maxiter, fig);
678 if( rd != r->data.db )
680 CvMat _r = cvMat( r->rows, r->cols, CV_64F, rd );
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/x86/
vp9_postproc_mmx.asm 38 ; move the global rd onto the stack, since we don't have enough registers
40 movq mm0, [GLOBAL(rd)]
43 %define RD [rsp]
45 %define RD [GLOBAL(rd)]
131 paddusw mm3, RD ; mm3 += round value
227 paddusw mm3, RD ; mm3 += round value
262 %undef RD
532 rd: label
  /external/chromium_org/third_party/mesa/src/docs/OLD/
MESA_sprite_point.spec 134 point's 3rd and 4th texture coordinates and r is half the point's
  /external/libvpx/libvpx/vp9/common/x86/
vp9_postproc_mmx.asm 38 ; move the global rd onto the stack, since we don't have enough registers
40 movq mm0, [GLOBAL(rd)]
43 %define RD [rsp]
45 %define RD [GLOBAL(rd)]
131 paddusw mm3, RD ; mm3 += round value
227 paddusw mm3, RD ; mm3 += round value
262 %undef RD
533 rd: label
  /external/mesa3d/docs/OLD/
MESA_sprite_point.spec 134 point's 3rd and 4th texture coordinates and r is half the point's
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/x86/
vp9_postproc_mmx.asm 38 ; move the global rd onto the stack, since we don't have enough registers
40 movq mm0, [GLOBAL(rd)]
43 %define RD [rsp]
45 %define RD [GLOBAL(rd)]
131 paddusw mm3, RD ; mm3 += round value
227 paddusw mm3, RD ; mm3 += round value
262 %undef RD
533 rd: label
  /ndk/sources/host-tools/sed-4.2.1/sed/
utils.c 428 int rd = rename (from, to);
429 if (rd != -1)
426 int rd = rename (from, to); local
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
date-format-tofte.js 39 var daysSuffix = ["st", "nd", "rd", "th", "th", "th", "th", // 1st - 7th
42 "nd", "rd", "th", "th", "th", "th", "th", // 22nd - 28th
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
date-format-tofte.js 39 var daysSuffix = ["st", "nd", "rd", "th", "th", "th", "th", // 1st - 7th
42 "nd", "rd", "th", "th", "th", "th", "th", // 22nd - 28th
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
date-format-tofte.js 39 var daysSuffix = ["st", "nd", "rd", "th", "th", "th", "th", // 1st - 7th
42 "nd", "rd", "th", "th", "th", "th", "th", // 22nd - 28th

Completed in 553 milliseconds

1 2 3 4 5 6 78 91011>>