Searched defs:sel (Results 26 - 50 of 119) sorted by relevance

12345

/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_format_yuv.c88 LLVMValueRef sel, tmp, tmp2; local
95 sel = lp_build_compare(gallivm, type, PIPE_FUNC_EQUAL, i, lp_build_const_int_vec(gallivm, type, 0));
96 *y = lp_build_select(&bld32, sel, tmp, tmp2);
156 LLVMValueRef sel, tmp; local
162 sel = lp_build_compare(gallivm, type, PIPE_FUNC_EQUAL, i, lp_build_const_int_vec(gallivm, type, 0));
163 *y = lp_build_select(&bld32, sel, packed, tmp);
/external/skia/experimental/Networking/
H A DSkSockets.cpp274 int sel = select(fSockfd + 1, &workingSet, NULL, NULL, &timeout); local
275 if (sel < 0) {
279 if (sel == 0) //select() timed out
/external/valgrind/main/VEX/priv/
H A Dguest_mips_helpers.c413 #define ASM_VOLATILE_CASE(rd, sel) \
415 asm volatile ("mfc0 %0, $" #rd ", "#sel"\n\t" :"=r" (x) ); \
418 UInt mips32_dirtyhelper_mfc0(UInt rd, UInt sel) argument
422 switch (sel) {
745 #define ASM_VOLATILE_CASE(rd, sel) \
747 asm volatile ("dmfc0 %0, $" #rd ", "#sel"\n\t" :"=r" (x) ); \
750 ULong mips64_dirtyhelper_dmfc0 ( UInt rd, UInt sel )
754 switch (sel) {
1075 #define ASM_VOLATILE_CASE(rd, sel) \
1076 case rd: asm volatile ("dmfc0 %0, $" #rd ", "#sel"\
[all...]
/external/chromium_org/third_party/libxslt/libexslt/
H A Dfunctions.c546 xmlChar *sel; local
623 sel = xmlGetNsProp(inst, (const xmlChar *) "select", NULL);
624 if (sel != NULL) {
625 ret->select = xmlXPathCompile (sel);
626 xmlFree(sel);
/external/chromium_org/ui/views/touchui/
H A Dtouch_selection_controller_impl_unittest.cc121 gfx::Rect GetCursorRect(const gfx::SelectionModel& sel) { argument
122 return textfield_test_api_->GetRenderText()->GetCursorBounds(sel, true);
125 gfx::Point GetCursorPosition(const gfx::SelectionModel& sel) { argument
126 gfx::Rect cursor_bounds = GetCursorRect(sel);
194 const gfx::SelectionModel& sel = textfield_->GetSelectionModel(); local
195 int cursor_height = GetCursorRect(sel).height();
218 gfx::SelectionModel sel = textfield_->GetSelectionModel(); \
226 gfx::Point selection_end = GetCursorPosition(sel); \
242 gfx::Point cursor_pos = GetCursorPosition(sel); \
/external/qemu/proxy/
H A Dproxy_common.c374 proxy_select_set( ProxySelect* sel, argument
381 if (*sel->pcount < fd+1)
382 *sel->pcount = fd+1;
385 FD_SET( fd, sel->reads );
387 FD_CLR( fd, sel->reads );
390 FD_SET( fd, sel->writes );
392 FD_CLR( fd, sel->writes );
395 FD_SET( fd, sel->errors );
397 FD_CLR( fd, sel->errors );
402 proxy_select_poll( ProxySelect* sel, in argument
423 ProxySelect sel[1]; local
446 ProxySelect sel[1]; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Dnetworkconfig.cpp62 void NetworkConfig::paramsFromScanResults(QTreeWidgetItem *sel) argument
67 setWindowTitle(sel->text(0));
68 ssidEdit->setText(sel->text(0));
70 QString flags = sel->text(4);
104 bssid = sel->text(1);
108 void NetworkConfig::authChanged(int sel) argument
110 encrSelect->setEnabled(sel != AUTH_NONE_OPEN && sel != AUTH_NONE_WEP &&
111 sel != AUTH_NONE_WEP_SHARED);
112 pskEdit->setEnabled(sel
142 eapChanged(int sel) argument
[all...]
/external/chromium_org/media/cdm/
H A Daes_decryptor.cc115 const ClearBytesBufferSel sel,
120 if (sel == kSrcContainsClearBytes) {
114 CopySubsamples(const std::vector<SubsampleEntry>& subsamples, const ClearBytesBufferSel sel, const uint8* src, uint8* dst) argument
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DVisibleSelection.cpp869 void showTree(const blink::VisibleSelection& sel) argument
871 sel.showTreeForThis();
874 void showTree(const blink::VisibleSelection* sel) argument
876 if (sel)
877 sel->showTreeForThis();
/external/chromium_org/third_party/icu/source/common/
H A Ducnvsel.cpp227 ucnvsel_close(UConverterSelector *sel) { argument
228 if (!sel) {
231 if (sel->ownEncodingStrings) {
232 uprv_free(sel->encodings[0]);
234 uprv_free(sel->encodings);
235 if (sel->ownPv) {
236 uprv_free(sel->pv);
238 utrie2_close(sel->trie);
239 uprv_free(sel->swapped);
240 uprv_free(sel);
280 ucnvsel_serialize(const UConverterSelector* sel, void* buffer, int32_t bufferCapacity, UErrorCode* status) argument
548 UConverterSelector* sel = (UConverterSelector*)uprv_malloc(sizeof(UConverterSelector)); local
594 const UConverterSelector* sel; member in struct:Enumerator
626 const UConverterSelector* sel; local
690 selectForMask(const UConverterSelector* sel, uint32_t *mask, UErrorCode *status) argument
740 ucnvsel_selectForString(const UConverterSelector* sel, const UChar *s, int32_t length, UErrorCode *status) argument
782 ucnvsel_selectForUTF8(const UConverterSelector* sel, const char *s, int32_t length, UErrorCode *status) argument
[all...]
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Ducnvseltst.c350 serializeAndUnserialize(UConverterSelector *sel, char **buffer, UErrorCode *status) { argument
354 ser_len = ucnvsel_serialize(sel, NULL, 0, status);
357 return sel;
361 ser_len2 = ucnvsel_serialize(sel, new_buffer, ser_len, status);
365 return sel;
367 ucnvsel_close(sel);
370 sel = ucnvsel_openFromSerialized(new_buffer, ser_len, status);
375 return sel;
/external/chromium_org/third_party/libxslt/libxslt/
H A Dvariables.c1303 * @sel: the expression which need to be evaluated to generate a value
1304 * @tree: the subtree if sel is NULL
1315 const xmlChar *ns_uri, const xmlChar *sel,
1340 elem->select = xmlDictLookup(style->dict, sel, -1);
1314 xsltRegisterGlobalVariable(xsltStylesheetPtr style, const xmlChar *name, const xmlChar *ns_uri, const xmlChar *sel, xmlNodePtr tree, xsltStylePreCompPtr comp, const xmlChar *value) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
H A Dradeonsi_shader.c664 struct si_pipe_shader_selector *sel = shader->selector; local
681 tgsi_scan_shader(sel->tokens, &shader_info);
690 si_shader_ctx.tokens = sel->tokens;
701 tgsi_dump(sel->tokens, 0);
704 if (!lp_build_tgsi_llvm(bld_base, sel->tokens)) {
/external/chromium_org/third_party/skia/samplecode/
H A DSampleFilterFuzz.cpp72 int sel; local
74 if (return_large) sel = R(6); else sel = R(4);
75 if (!return_undef && sel == 0) sel = 1;
79 switch (sel) {
/external/chromium_org/ui/views/controls/textfield/
H A Dtextfield_unittest.cc288 // Get the cursor bounds of |sel|.
289 gfx::Rect GetCursorBounds(const gfx::SelectionModel& sel) { argument
290 return test_api_->GetRenderText()->GetCursorBounds(sel, true);
1547 gfx::SelectionModel sel(0, gfx::CURSOR_FORWARD);
1548 cursor_bounds.push_back(GetCursorBounds(sel));
1550 sel = gfx::SelectionModel(1, gfx::CURSOR_BACKWARD);
1551 gfx::Rect bound = GetCursorBounds(sel);
1552 sel = gfx::SelectionModel(1, gfx::CURSOR_FORWARD);
1553 EXPECT_EQ(bound.x(), GetCursorBounds(sel).x());
1558 sel
[all...]
/external/clang/lib/Basic/
H A DIdentifierTable.cpp418 ObjCMethodFamily Selector::getMethodFamilyImpl(Selector sel) { argument
419 IdentifierInfo *first = sel.getIdentifierInfoForSlot(0);
423 if (sel.isUnarySelector()) {
463 ObjCInstanceTypeFamily Selector::getInstTypeMethodFamily(Selector sel) { argument
464 IdentifierInfo *first = sel.getIdentifierInfoForSlot(0);
/external/icu/icu4c/source/common/
H A Ducnvsel.cpp227 ucnvsel_close(UConverterSelector *sel) { argument
228 if (!sel) {
231 if (sel->ownEncodingStrings) {
232 uprv_free(sel->encodings[0]);
234 uprv_free(sel->encodings);
235 if (sel->ownPv) {
236 uprv_free(sel->pv);
238 utrie2_close(sel->trie);
239 uprv_free(sel->swapped);
240 uprv_free(sel);
280 ucnvsel_serialize(const UConverterSelector* sel, void* buffer, int32_t bufferCapacity, UErrorCode* status) argument
548 UConverterSelector* sel = (UConverterSelector*)uprv_malloc(sizeof(UConverterSelector)); local
594 const UConverterSelector* sel; member in struct:Enumerator
626 const UConverterSelector* sel; local
690 selectForMask(const UConverterSelector* sel, uint32_t *mask, UErrorCode *status) argument
740 ucnvsel_selectForString(const UConverterSelector* sel, const UChar *s, int32_t length, UErrorCode *status) argument
782 ucnvsel_selectForUTF8(const UConverterSelector* sel, const char *s, int32_t length, UErrorCode *status) argument
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Ducnvseltst.c350 serializeAndUnserialize(UConverterSelector *sel, char **buffer, UErrorCode *status) { argument
354 ser_len = ucnvsel_serialize(sel, NULL, 0, status);
357 return sel;
361 ser_len2 = ucnvsel_serialize(sel, new_buffer, ser_len, status);
365 return sel;
367 ucnvsel_close(sel);
370 sel = ucnvsel_openFromSerialized(new_buffer, ser_len, status);
375 return sel;
/external/iproute2/tc/
H A Df_u32.c117 static int pack_key(struct tc_u32_sel *sel, __u32 key, __u32 mask, argument
121 int hwm = sel->nkeys;
126 if (sel->keys[i].off == off && sel->keys[i].offmask == offmask) {
127 __u32 intersect = mask&sel->keys[i].mask;
129 if ((key^sel->keys[i].val) & intersect)
131 sel->keys[i].val |= key;
132 sel->keys[i].mask |= mask;
141 sel->keys[hwm].val = key;
142 sel
149 pack_key32(struct tc_u32_sel *sel, __u32 key, __u32 mask, int off, int offmask) argument
157 pack_key16(struct tc_u32_sel *sel, __u32 key, __u32 mask, int off, int offmask) argument
174 pack_key8(struct tc_u32_sel *sel, __u32 key, __u32 mask, int off, int offmask) argument
226 parse_u32(int *argc_p, char ***argv_p, struct tc_u32_sel *sel, int off, int offmask) argument
258 parse_u16(int *argc_p, char ***argv_p, struct tc_u32_sel *sel, int off, int offmask) argument
289 parse_u8(int *argc_p, char ***argv_p, struct tc_u32_sel *sel, int off, int offmask) argument
324 parse_ip_addr(int *argc_p, char ***argv_p, struct tc_u32_sel *sel, int off) argument
359 parse_ip6_addr(int *argc_p, char ***argv_p, struct tc_u32_sel *sel, int off) argument
406 parse_ip6_class(int *argc_p, char ***argv_p, struct tc_u32_sel *sel) argument
444 parse_ether_addr(int *argc_p, char ***argv_p, struct tc_u32_sel *sel, int off) argument
483 parse_ip(int *argc_p, char ***argv_p, struct tc_u32_sel *sel) argument
543 parse_ip6(int *argc_p, char ***argv_p, struct tc_u32_sel *sel) argument
587 parse_ether(int *argc_p, char ***argv_p, struct tc_u32_sel *sel) argument
613 parse_udp(int *argc_p, char ***argv_p, struct tc_u32_sel *sel) argument
637 parse_icmp(int *argc_p, char ***argv_p, struct tc_u32_sel *sel) argument
695 parse_selector(int *argc_p, char ***argv_p, struct tc_u32_sel *sel, struct nlmsghdr *n) argument
743 parse_offset(int *argc_p, char ***argv_p, struct tc_u32_sel *sel) argument
794 parse_hashkey(int *argc_p, char ***argv_p, struct tc_u32_sel *sel) argument
979 struct tc_u32_sel sel; member in struct:__anon22426
981 } sel; local
1083 struct tc_u32_sel sel; member in struct:__anon22427
1177 struct tc_u32_sel *sel = NULL; local
[all...]
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTypeVendor.cpp365 clang::Selector sel = ast_ctx.Selectors.getSelector(is_zero_argument ? 0 : selector_components.size(), selector_components.data()); local
375 sel,
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dradeonsi_shader.c664 struct si_pipe_shader_selector *sel = shader->selector; local
681 tgsi_scan_shader(sel->tokens, &shader_info);
690 si_shader_ctx.tokens = sel->tokens;
701 tgsi_dump(sel->tokens, 0);
704 if (!lp_build_tgsi_llvm(bld_base, sel->tokens)) {
/external/qemu-pc-bios/vgabios/tests/lfbprof/
H A Dlfbprof.c48 void DPMI_allocRealSeg(int size,int *sel,int *r_seg) argument
53 * sel - Place to return protected mode selector
69 *sel = r.w.dx; /* Protected mode selector */
73 void DPMI_freeRealSeg(unsigned sel) argument
77 * Parameters: sel - Protected mode selector of block to free
86 r.w.dx = sel; /* DX := selector from 0x100 */
192 int sel; local
200 sel = r.w.ax;
203 r.w.bx = sel;
206 return sel;
237 DPMI_setSelectorBase(int sel,long linAddr) argument
259 DPMI_setSelectorLimit(int sel,long limit) argument
438 int sel; local
[all...]
/external/skia/samplecode/
H A DSampleFilterFuzz.cpp74 int sel; local
76 if (return_large) sel = R(6); else sel = R(4);
77 if (!return_undef && sel == 0) sel = 1;
81 switch (sel) {
/external/chromium_org/chrome/browser/ui/views/omnibox/
H A Domnibox_view_views.cc451 const gfx::Range sel = GetSelectedRange(); local
452 model()->StartAutocomplete(!sel.is_empty(), sel.GetMax() < text().length());
/external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
H A Dmain_wnd.cc346 LRESULT sel = ::SendMessage(listbox_, LB_GETCURSEL, 0, 0); local
347 if (sel != LB_ERR) {
348 LRESULT peer_id = ::SendMessage(listbox_, LB_GETITEMDATA, sel, 0);

Completed in 686 milliseconds

12345