HomeSort by relevance Sort by last modified time
    Searched defs:ctype (Results 1 - 25 of 59) sorted by null

1 2 3

  /external/libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.dtor/
dtor.pass.cpp 12 // template <> class ctype<char>
14 // ~ctype();
24 std::locale l(std::locale::classic(), new std::ctype<char>); member in class:std
29 std::ctype<char>::mask table[256];
30 std::locale l(std::locale::classic(), new std::ctype<char>(table));
36 new std::ctype<char>(new std::ctype<char>::mask[256], true));
  /external/libcxx/test/std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/
table.pass.cpp 12 // template <> class ctype<char>
21 typedef std::ctype<char> F;
23 std::locale l(std::locale::classic(), new std::ctype<char>); member in class:std
28 std::ctype<char>::mask table[256];
29 std::locale l(std::locale::classic(), new std::ctype<char>(table));
  /external/ltp/testcases/network/nfs/nfslock01/
nfs_flock_dgen.c 11 int i, j, k, nlines, nchars, ctype; local
17 ("usage: <nfs_flock_dgen> <file> <char/line> <lines> <ctype>\n");
30 ctype = atoi(argv[4]);
35 if (ctype)
46 if (!ctype) {
  /external/skia/src/sksl/
SkSLCPPUniformCTypes.h 36 UniformCTypeMapper(Layout::CType ctype, const std::vector<String>& skslTypes,
38 : UniformCTypeMapper(ctype, skslTypes, setUniformFormat, false, "", "", "") { }
42 UniformCTypeMapper(Layout::CType ctype, const std::vector<String>& skslTypes,
45 : UniformCTypeMapper(ctype, skslTypes, setUniformFormat,
61 Layout::CType ctype() const { function in class:SkSL::UniformCTypeMapper
65 // The sksl type names that the mapper's ctype can be mapped to
101 // uniformHandleName, and valueVarName is the variable name pointing to the ctype instanc
    [all...]
SkSLCPPUniformCTypes.cpp 116 Layout::CType ctype, const std::vector<String>& skslTypes, const String& setUniformFormat,
119 : fCType(ctype)
131 static UniformCTypeMapper REGISTER(Layout::CType ctype, const std::vector<String>& skslTypes,
134 return UniformCTypeMapper(ctype, skslTypes, uniformFormat, defaultValue, dirtyExpression,
138 static UniformCTypeMapper REGISTER(Layout::CType ctype, const std::vector<String>& skslTypes,
140 return REGISTER(ctype, skslTypes, uniformFormat, defaultValue,
150 REGISTER(Layout::CType::kSkRect, { "half4", "float4", "double4" }
202 Layout::CType ctype = layout.fCType; local
    [all...]
SkSLHCodeGenerator.cpp 32 Layout::CType ctype = ParameterCType(context, type, layout); local
33 if (ctype != Layout::CType::kDefault) {
34 return Layout::CTypeToStr(ctype);
39 Layout::CType HCodeGenerator::ParameterCType(const Context& context, const Type& type,
41 if (layout.fCType != Layout::CType::kDefault) {
47 return Layout::CType::kFloat;
51 return Layout::CType::kInt32;
53 return Layout::CType::kSkPoint
    [all...]
  /external/skqp/src/sksl/
SkSLCPPUniformCTypes.h 36 UniformCTypeMapper(Layout::CType ctype, const std::vector<String>& skslTypes,
38 : UniformCTypeMapper(ctype, skslTypes, setUniformFormat, false, "", "", "") { }
42 UniformCTypeMapper(Layout::CType ctype, const std::vector<String>& skslTypes,
45 : UniformCTypeMapper(ctype, skslTypes, setUniformFormat,
61 Layout::CType ctype() const { function in class:SkSL::UniformCTypeMapper
65 // The sksl type names that the mapper's ctype can be mapped to
101 // uniformHandleName, and valueVarName is the variable name pointing to the ctype instanc
    [all...]
SkSLCPPUniformCTypes.cpp 116 Layout::CType ctype, const std::vector<String>& skslTypes, const String& setUniformFormat,
119 : fCType(ctype)
131 static UniformCTypeMapper REGISTER(Layout::CType ctype, const std::vector<String>& skslTypes,
134 return UniformCTypeMapper(ctype, skslTypes, uniformFormat, defaultValue, dirtyExpression,
138 static UniformCTypeMapper REGISTER(Layout::CType ctype, const std::vector<String>& skslTypes,
140 return REGISTER(ctype, skslTypes, uniformFormat, defaultValue,
150 REGISTER(Layout::CType::kSkRect, { "half4", "float4", "double4" }
202 Layout::CType ctype = layout.fCType; local
    [all...]
SkSLHCodeGenerator.cpp 32 Layout::CType ctype = ParameterCType(context, type, layout); local
33 if (ctype != Layout::CType::kDefault) {
34 return Layout::CTypeToStr(ctype);
39 Layout::CType HCodeGenerator::ParameterCType(const Context& context, const Type& type,
41 if (layout.fCType != Layout::CType::kDefault) {
45 return Layout::CType::kFloat;
49 return Layout::CType::kInt32;
51 return Layout::CType::kSkPoint
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
unicodectype.c 59 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
60 int delta = ctype->title;
62 if (ctype->flags & NODELTA_MASK)
76 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
78 return (ctype->flags & TITLE_MASK) != 0;
86 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
88 return (ctype->flags & DECIMAL_MASK) ? ctype->decimal : -1;
103 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
105 return (ctype->flags & DIGIT_MASK) ? ctype->digit : -1;
120 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
132 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
142 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
152 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
166 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
180 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
unicodectype.c 59 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
60 int delta = ctype->title;
62 if (ctype->flags & NODELTA_MASK)
76 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
78 return (ctype->flags & TITLE_MASK) != 0;
86 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
88 return (ctype->flags & DECIMAL_MASK) ? ctype->decimal : -1;
103 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
105 return (ctype->flags & DIGIT_MASK) ? ctype->digit : -1;
120 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
132 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
142 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
152 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
166 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
180 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
    [all...]
  /external/python/cpython2/Objects/
unicodectype.c 59 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
60 int delta = ctype->title;
62 if (ctype->flags & NODELTA_MASK)
76 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
78 return (ctype->flags & TITLE_MASK) != 0;
86 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
88 return (ctype->flags & DECIMAL_MASK) ? ctype->decimal : -1;
103 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
105 return (ctype->flags & DIGIT_MASK) ? ctype->digit : -1
120 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
132 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
142 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
152 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
166 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
180 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
    [all...]
  /external/webp/src/enc/
cost_enc.c 61 int ctype, band, ctx; local
65 for (ctype = 0; ctype < NUM_TYPES; ++ctype) {
69 const uint8_t* const p = proba->coeffs_[ctype][band][ctx];
70 uint16_t* const table = proba->level_cost_[ctype][band][ctx];
84 proba->remapped_costs_[ctype][n][ctx] =
85 proba->level_cost_[ctype][VP8EncBands[n]][ctx];
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
regenc.h 93 #define CTYPE_TO_BIT(ctype) (1<<(ctype))
94 #define CTYPE_IS_WORD_GRAPH_PRINT(ctype) \
95 ((ctype) == ONIGENC_CTYPE_WORD || (ctype) == ONIGENC_CTYPE_GRAPH ||\
96 (ctype) == ONIGENC_CTYPE_PRINT)
101 int ctype; member in struct:__anon9280
119 ONIG_EXTERN int onigenc_not_support_get_ctype_code_range P_((OnigCtype ctype, OnigCodePoint* sb_out, const OnigCodePoint* ranges[]));
140 ONIG_EXTERN int onigenc_mb2_is_code_ctype P_((OnigEncoding enc, OnigCodePoint code, unsigned int ctype));
143 ONIG_EXTERN int onigenc_mb4_is_code_ctype P_((OnigEncoding enc, OnigCodePoint code, unsigned int ctype));
    [all...]
  /external/bcc/src/cc/usdt/
usdt.cc 158 return largest->ctype();
175 std::string ctype = largest_arg_type(arg_n); local
176 std::string cptr = tfm::format("*((%s *)dest)", ctype);
182 probe_func, arg_n + 1, ctype);
usdt_args.cc 31 std::string Argument::ctype() const { function in class:USDT::Argument
96 ctype(), local_name);
109 global_address, *deref_offset_, ctype(), local_name);
  /external/curl/docs/examples/
crawler.c 143 int is_html(char *ctype)
145 return ctype != NULL && strlen(ctype) > 10 && strstr(ctype, "text/html");
187 char *ctype; local
188 curl_easy_getinfo(handle, CURLINFO_CONTENT_TYPE, &ctype);
189 printf("[%d] HTTP 200 (%s): %s\n", complete, ctype, url);
190 if(is_html(ctype) && mem->size > 100) {
  /external/ltp/testcases/kdump/lib/lkdtm/
lkdtm.c 82 enum ctype { enum
121 static enum ctype cptype = NONE;
  /external/python/cpython3/Objects/
unicodectype.c 66 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
68 if (ctype->flags & EXTENDED_CASE_MASK)
69 return _PyUnicode_ExtendedCase[ctype->title & 0xFFFF];
70 return ch + ctype->title;
78 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
80 return (ctype->flags & TITLE_MASK) != 0;
88 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
90 return (ctype->flags & XID_START_MASK) != 0;
98 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
100 return (ctype->flags & XID_CONTINUE_MASK) != 0
108 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
125 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
142 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
162 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
172 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
182 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
192 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
204 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
213 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
229 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
245 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
261 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
276 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
283 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
293 const _PyUnicode_TypeRecord *ctype = gettyperecord(ch); local
    [all...]
  /external/u-boot/drivers/mmc/
dw_mmc.c 394 u32 ctype, regs; local
401 ctype = DWMCI_CTYPE_8BIT;
404 ctype = DWMCI_CTYPE_4BIT;
407 ctype = DWMCI_CTYPE_1BIT;
411 dwmci_writel(host, DWMCI_CTYPE, ctype);
  /external/mdnsresponder/mDNSShared/
dnssd_clientshim.c 375 char ctype[MAX_ESCAPED_DOMAIN_NAME]; local
391 ConvertDomainNameToCString(&type, ctype);
394 x->callback((DNSServiceRef)x, flags, 0, 0, cname, ctype, cdom, x->context);
  /external/openssh/
serverloop.c 585 char *ctype; local
590 ctype = packet_get_string(&len);
595 debug("server_input_channel_open: ctype %s rchan %d win %d max %d",
596 ctype, rchan, rwindow, rmaxpack);
598 if (strcmp(ctype, "session") == 0) {
600 } else if (strcmp(ctype, "direct-tcpip") == 0) {
602 } else if (strcmp(ctype, "direct-streamlocal@openssh.com") == 0) {
604 } else if (strcmp(ctype, "tun@openssh.com") == 0) {
608 debug("server_input_channel_open: confirm %s", ctype);
621 debug("server_input_channel_open: failure %s", ctype);
    [all...]
  /external/tensorflow/tensorflow/tools/proto_text/
gen_proto_text_functions_lib.cc 269 const auto ctype = field.options().ctype(); local
270 CHECK(ctype == FieldOptions::CORD || ctype == FieldOptions::STRING)
271 << "Unsupported ctype " << ctype;
  /external/tcpdump/
print-lmp.c 217 uint8_t ctype; member in struct:lmp_object_header
309 * on objects offsetted by the ctype
490 lmp_obj_ctype=(lmp_obj_header->ctype)&0x7f;
501 (lmp_obj_header->ctype)&0x80 ? "" : "non-",
    [all...]
  /external/libcxx/src/
locale.cpp 152 const locale::category locale::ctype; member in class:locale
202 install(&make<_VSTD::ctype<char> >(nullptr, false, 1u));
203 install(&make<_VSTD::ctype<wchar_t> >(1u));
313 if (c & locale::ctype)
384 if (c & locale::ctype)
386 install_from<_VSTD::ctype<char> >(one);
387 install_from<_VSTD::ctype<wchar_t> >(one);
770 // template <> class ctype<wchar_t>;
785 locale::id ctype<wchar_t>::id;
787 ctype<wchar_t>::~ctype(
919 ctype<char>::ctype(const mask* tab, bool del, size_t refs) function in class:ctype
    [all...]

Completed in 3751 milliseconds

1 2 3