/external/llvm/test/MC/ARM/ |
directive-eabi_attribute.s | 2 @ RUN: | llvm-readobj -s -sd | FileCheck %s
|
/external/llvm/test/MC/Mips/ |
r-mips-got-disp.s | 27 sd $ra, 8($sp) # 8-byte Folded Spill 28 sd $gp, 0($sp) # 8-byte Folded Spill
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/ |
picklpf.c | 136 void vp8cx_pick_filter_level_fast(YV12_BUFFER_CONFIG *sd, VP8_COMP *cpi) 179 best_err = calc_partial_ssl_err(sd, cm->frame_to_show); 191 filt_err = calc_partial_ssl_err(sd, cm->frame_to_show); 222 filt_err = calc_partial_ssl_err(sd, cm->frame_to_show); 266 void vp8cx_pick_filter_level(YV12_BUFFER_CONFIG *sd, VP8_COMP *cpi) 321 best_err = vp8_calc_ss_err(sd, cm->frame_to_show); 346 filt_err = vp8_calc_ss_err(sd, cm->frame_to_show); 374 filt_err = vp8_calc_ss_err(sd, cm->frame_to_show);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.ibits/ |
eval.pass.cpp | 42 explicit rand1(result_type sd = Min) : x_(sd)
|
/external/openssl/crypto/bn/asm/ |
mips3.s | 97 sd t1,0(a0) 110 sd t3,8(a0) 124 sd ta1,-16(a0) 137 sd ta3,-8(a0) 161 sd t1,0(a0) 176 sd t1,8(a0) 190 sd t1,16(a0) 219 sd v0,0(a0) 230 sd v0,-24(a0) 238 sd v0,-16(a0 [all...] |
/art/compiler/utils/arm/ |
assembler_arm.h | 466 virtual void vmovs(SRegister sd, SRegister sm, Condition cond = AL) = 0; 470 virtual bool vmovs(SRegister sd, float s_imm, Condition cond = AL) = 0; 473 virtual void vldrs(SRegister sd, const Address& ad, Condition cond = AL) = 0; 474 virtual void vstrs(SRegister sd, const Address& ad, Condition cond = AL) = 0; 478 virtual void vadds(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL) = 0; 480 virtual void vsubs(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL) = 0; 482 virtual void vmuls(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL) = 0; 484 virtual void vmlas(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL) = 0; 486 virtual void vmlss(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL) = 0; 488 virtual void vdivs(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL) = 0 [all...] |
assembler_arm32.cc | 279 void Arm32Assembler::vmovs(SRegister sd, SRegister sm, Condition cond) { 280 EmitVFPsss(cond, B23 | B21 | B20 | B6, sd, S0, sm); 289 bool Arm32Assembler::vmovs(SRegister sd, float s_imm, Condition cond) { 297 sd, S0, S0); 319 void Arm32Assembler::vadds(SRegister sd, SRegister sn, SRegister sm, 321 EmitVFPsss(cond, B21 | B20, sd, sn, sm); 331 void Arm32Assembler::vsubs(SRegister sd, SRegister sn, SRegister sm, 333 EmitVFPsss(cond, B21 | B20 | B6, sd, sn, sm); 343 void Arm32Assembler::vmuls(SRegister sd, SRegister sn, SRegister sm, 345 EmitVFPsss(cond, B21, sd, sn, sm) [all...] |
/external/wpa_supplicant_8/src/wps/ |
httpread.c | 62 int sd; /* descriptor of TCP socket to read from */ member in struct:httpread 145 eloop_unregister_sock(h->sd, EVENT_TYPE_READ); 149 h->sd = -1; /* aid debugging */ 374 static void httpread_read_handler(int sd, void *eloop_ctx, void *sock_ctx) 389 nread = read(h->sd, readbuf, sizeof(readbuf)); 684 eloop_unregister_sock(h->sd, EVENT_TYPE_READ); 707 int sd, /* descriptor of TCP socket to read from */ 720 h->sd = sd; 732 if (eloop_register_sock(sd, EVENT_TYPE_READ, httpread_read_handler [all...] |
wps_er_ssdp.c | 20 static void wps_er_ssdp_rx(int sd, void *eloop_ctx, void *sock_ctx) 33 nread = recvfrom(sd, buf, sizeof(buf) - 1, 0, 47 if (sd == er->multicast_sd) {
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
FilterDrawRepresentation.java | 114 StrokeData sd = (StrokeData) o; local 115 if (mType != sd.mType 116 || mRadius != sd.mRadius 117 || noPoints != sd.noPoints 118 || mColor != sd.mColor) { 121 return mPath.equals(sd.mPath); 271 public void fillStrokeParameters(StrokeData sd){ 275 sd.mColor = color; 276 sd.mRadius = size; 277 sd.mType = type [all...] |
/external/mdnsresponder/mDNSShared/ |
uds_daemon.c | 135 dnssd_sock_t sd; member in struct:request_state 318 if (!dnssd_SocketValid(req->sd)) 319 { LogMsg("abort_request: ERROR: Attempt to abort operation %p with invalid fd %d", req, req->sd); return; } 324 if (req->errsd != req->sd) LogOperation("%3d: Removing FD and closing errsd %d", req->sd, req->errsd); 325 else LogOperation("%3d: Removing FD", req->sd); 326 udsSupportRemoveFDFromEventLoop(req->sd, req->platform_data); // Note: This also closes file descriptor req->sd for us 327 if (req->errsd != req->sd) { dnssd_close(req->errsd); req->errsd = req->sd; } 2406 domainname *sd; local 3885 dnssd_sock_t sd = accept(fd, (struct sockaddr*) &cliaddr, &len); local [all...] |
/external/chromium_org/v8/src/mips64/ |
lithium-gap-resolver-mips64.cc | 171 __ sd(kLithiumScratchReg, cgen_->ToMemOperand(saved_destination_)); 200 __ sd(source_register, cgen_->ToMemOperand(destination)); 219 __ sd(at, destination_operand); 223 __ sd(kLithiumScratchReg, destination_operand); 247 __ sd(kLithiumScratchReg, cgen_->ToMemOperand(destination)); 250 __ sd(kLithiumScratchReg, cgen_->ToMemOperand(destination)); 253 __ sd(kLithiumScratchReg, cgen_->ToMemOperand(destination));
|
/frameworks/base/core/java/android/app/ |
LoadedApk.java | 668 LoadedApk.ServiceDispatcher sd = smap.valueAt(i); local 671 + sd.getServiceConnection() + " that was originally bound here"); 672 leak.setStackTrace(sd.getLocation().getStackTrace()); 679 sd.getIServiceConnection()); 683 sd.doForget(); 965 LoadedApk.ServiceDispatcher sd = null; local 989 LoadedApk.ServiceDispatcher sd = null; local 1060 LoadedApk.ServiceDispatcher sd = mDispatcher.get(); local [all...] |
/external/valgrind/main/coregrind/ |
m_libcfile.c | 844 Int sd, res; local 863 sd = VG_(socket)(VKI_AF_INET, VKI_SOCK_STREAM, 0 /* IPPROTO_IP ? */); 864 if (sd < 0) { 870 res = my_connect(sd, &servAddr, sizeof(servAddr)); 876 return sd; 999 Int VG_(write_socket)( Int sd, const void *msg, Int count ) 1014 args[0] = sd; 1025 res = VG_(do_syscall6)(__NR_sendto, sd, (UWord)msg, 1031 res = VG_(do_syscall3)(__NR_write_nocancel, sd, (UWord)msg, count); 1039 Int VG_(getsockname) ( Int sd, struct vki_sockaddr *name, Int *namelen [all...] |
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
sort.c | 908 static void __sort_dimension__add(struct sort_dimension *sd, enum sort_type idx) 910 if (sd->taken) 913 if (sd->entry->se_collapse) 919 list_add_tail(&sd->entry->list, &hist_entry__sort_list); 920 sd->taken = 1; 928 struct sort_dimension *sd = &common_sort_dimensions[i]; local 930 if (strncasecmp(tok, sd->name, strlen(tok))) 933 if (sd->entry == &sort_parent) { 943 } else if (sd->entry == &sort_sym) { 947 __sort_dimension__add(sd, i) 952 struct sort_dimension *sd = &bstack_sort_dimensions[i]; local 968 struct sort_dimension *sd = &memory_sort_dimensions[i]; local [all...] |
/external/chromium_org/chrome/browser/extensions/api/music_manager_private/ |
device_id_linux.cc | 110 int sd = socket(AF_INET, SOCK_DGRAM, 0); local 111 int result = ioctl(sd, SIOCGIFHWADDR, &ifinfo); 112 close(sd);
|
/external/chromium_org/sandbox/win/src/ |
app_container_test.cc | 44 CSecurityDesc sd; 45 if (!AtlGetSecurityDescriptor(file.Get(), SE_FILE_OBJECT, &sd, 57 sd.GetDacl(&new_dacl);
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/ |
onyx.h | 263 int vp8_receive_raw_frame(struct VP8_COMP* comp, unsigned int frame_flags, YV12_BUFFER_CONFIG *sd, int64_t time_stamp, int64_t end_time_stamp); 269 int vp8_get_reference(struct VP8_COMP* comp, enum vpx_ref_frame_type ref_frame_flag, YV12_BUFFER_CONFIG *sd); 270 int vp8_set_reference(struct VP8_COMP* comp, enum vpx_ref_frame_type ref_frame_flag, YV12_BUFFER_CONFIG *sd);
|
/external/libcxx/test/algorithms/alg.modifying.operations/alg.unique/ |
unique_copy.pass.cpp | 52 const unsigned sd = sizeof(id)/sizeof(id[0]); local 53 int jd[sd] = {-1}; 54 r = std::unique_copy(InIter(id), InIter(id+sd), OutIter(jd));
|
unique_pred.pass.cpp | 66 const unsigned sd = sizeof(id)/sizeof(id[0]); local 68 r = std::unique(Iter(id), Iter(id+sd), count_equal()); 72 assert(count_equal::count == sd-1); 156 const unsigned sd = sizeof(id)/sizeof(id[0]); local 158 r = std::unique(Iter(id), Iter(id+sd), count_equal()); 162 assert(count_equal::count == sd-1);
|
/external/libvpx/libvpx/vp8/common/ |
onyx.h | 252 int vp8_receive_raw_frame(struct VP8_COMP* comp, unsigned int frame_flags, YV12_BUFFER_CONFIG *sd, int64_t time_stamp, int64_t end_time_stamp); 258 int vp8_get_reference(struct VP8_COMP* comp, enum vpx_ref_frame_type ref_frame_flag, YV12_BUFFER_CONFIG *sd); 259 int vp8_set_reference(struct VP8_COMP* comp, enum vpx_ref_frame_type ref_frame_flag, YV12_BUFFER_CONFIG *sd);
|
/frameworks/compile/mclinker/lib/Object/ |
SectionMap.cpp | 50 SectionData* sd = SectionData::Create(*m_pSection); local 51 m_pSection->setSectionData(sd); 52 new NullFragment(sd); 53 new NullFragment(sd); 63 SectionData* sd = SectionData::Create(*m_pSection); local 64 m_pSection->setSectionData(sd); 65 new NullFragment(sd); 66 new NullFragment(sd); 89 SectionData* sd = SectionData::Create(*m_pSection); local 90 m_pSection->setSectionData(sd); 102 SectionData* sd = SectionData::Create(*m_pSection); local [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/ |
onyx.h | 252 int vp8_receive_raw_frame(struct VP8_COMP* comp, unsigned int frame_flags, YV12_BUFFER_CONFIG *sd, int64_t time_stamp, int64_t end_time_stamp); 258 int vp8_get_reference(struct VP8_COMP* comp, enum vpx_ref_frame_type ref_frame_flag, YV12_BUFFER_CONFIG *sd); 259 int vp8_set_reference(struct VP8_COMP* comp, enum vpx_ref_frame_type ref_frame_flag, YV12_BUFFER_CONFIG *sd);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.unique/ |
unique_copy.pass.cpp | 52 const unsigned sd = sizeof(id)/sizeof(id[0]); local 53 int jd[sd] = {-1}; 54 r = std::unique_copy(InIter(id), InIter(id+sd), OutIter(jd));
|
unique_pred.pass.cpp | 66 const unsigned sd = sizeof(id)/sizeof(id[0]); local 68 r = std::unique(Iter(id), Iter(id+sd), count_equal()); 72 assert(count_equal::count == sd-1); 156 const unsigned sd = sizeof(id)/sizeof(id[0]); local 158 r = std::unique(Iter(id), Iter(id+sd), count_equal()); 162 assert(count_equal::count == sd-1);
|