Searched refs:cc (Results 1 - 25 of 45) sorted by relevance

12

/haiku/src/system/libroot/os/arch/sparc/
H A Dfpu_compare.c95 int cc; local
109 cc = FSR_CC_UO;
118 cc = FSR_CC_EQ;
123 cc = FSR_CC_LT;
128 cc = FSR_CC_GT;
148 #define opposite_cc(cc) ((cc) == FSR_CC_LT ? FSR_CC_GT : FSR_CC_LT)
151 cc = diff(FSR_CC_LT);
155 cc = diff(FSR_CC_GT);
160 cc
[all...]
/haiku/src/bin/fwcontrol/
H A Dfwcrom.c88 #define CROM_END(cc) ((vm_offset_t)(cc)->stack[0].dir + MAX_ROM - 1)
91 crom_init_context(struct crom_context *cc, uint32_t *p) argument
98 cc->depth = -1;
105 cc->depth = -1;
108 cc->depth = 0;
109 cc->stack[0].dir = (struct csrdirectory *)p;
110 cc->stack[0].index = 0;
114 crom_get(struct crom_context *cc) argument
118 ptr = &cc
123 crom_next(struct crom_context *cc) argument
164 crom_search_key(struct crom_context *cc, uint8_t key) argument
181 struct crom_context c, *cc; local
205 crom_parse_text(struct crom_context *cc, char *buf, int len) argument
316 crom_desc(struct crom_context *cc, char *buf, int len) argument
[all...]
H A Dfwcontrol.c438 struct crom_context cc; local
467 crom_init_context(&cc, crom_buf);
468 dir = cc.stack[0].dir;
482 while (cc.depth >= 0) {
483 desc = crom_desc(&cc, info, sizeof(info));
484 reg = crom_get(&cc);
485 for (i = 0; i < cc.depth; i++)
492 crom_next(&cc);
/haiku/src/bin/mail_utils/
H A Dmail.cpp30 fprintf(stdout,"usage: %s [-v] [-s subject] [-c cc-addr] "
36 const char *cc = ""; local
49 cc = argv[i+1];
64 fprintf(stdout, "Cc:\t%s\n", cc);
72 strcmp(cc, "") == 0 &&
76 "in to, cc or bcc fields.\n");
113 mail.AddHeaderField(B_MAIL_CC, cc);
/haiku/src/system/libroot/posix/glibc/libio/
H A Diofwide.c121 struct _IO_codecvt *cc = fp->_codecvt = &fp->_wide_data->_codecvt; local
142 *cc = __libio_codecvt;
144 cc->__cd_in.__cd.__nsteps = fcts.towc_nsteps;
145 cc->__cd_in.__cd.__steps = fcts.towc;
147 cc->__cd_in.__cd.__data[0].__invocation_counter = 0;
148 cc->__cd_in.__cd.__data[0].__internal_use = 1;
149 cc->__cd_in.__cd.__data[0].__flags = __GCONV_IS_LAST;
150 cc->__cd_in.__cd.__data[0].__statep = &fp->_wide_data->_IO_state;
153 cc->__cd_in.__cd.__data[0].__trans = NULL;
155 cc
[all...]
H A Diofclose.c78 struct _IO_codecvt *cc = fp->_codecvt;
80 __gconv_release_step (cc->__cd_in.__cd.__steps);
81 __gconv_release_step (cc->__cd_out.__cd.__steps);
H A Dfileops.c332 struct _IO_codecvt *cc;
360 cc = fp->_codecvt = &fp->_wide_data->_codecvt;
363 *cc = __libio_codecvt;
365 cc->__cd_in.__cd.__nsteps = fcts.towc_nsteps;
366 cc->__cd_in.__cd.__steps = fcts.towc;
368 cc->__cd_in.__cd.__data[0].__invocation_counter = 0;
369 cc->__cd_in.__cd.__data[0].__internal_use = 1;
370 cc->__cd_in.__cd.__data[0].__flags = __GCONV_IS_LAST;
371 cc->__cd_in.__cd.__data[0].__statep = &result->_wide_data->_IO_state;
374 cc
[all...]
/haiku/3rdparty/kallisti5/
H A Dconfigure.py167 cc = os.environ.get("CC")
168 if cc == None:
170 cc = "gcc"
172 set_build_config("HOST_CC", cc)
173 set_build_config("HOST_CC_LD", cmdrun([cc, "-print-prog-name=ld"]).strip())
174 set_build_config("HOST_CC_OBJCOPY", cmdrun([cc, "-print-prog-name=objcopy"]).strip())
175 set_build_config("HOST_GCC_MACHINE", cmdrun([cc, "-dumpmachine"]).strip())
176 set_build_config("HOST_GCC_RAW_VERSION", cmdrun([cc, "-dumpversion"]).strip())
179 cc = get_build_config("HOST_CC")
181 set_build_config("HAIKU_GCC_RAW_VERSION_" + arch, cmdrun([cc, "
[all...]
/haiku/src/system/libroot/posix/musl/math/
H A Dj1.c67 double z,s,c,ss,cc; local
81 cc = s-c;
87 cc = z/ss;
89 ss = z/cc;
93 cc = pone(x)*cc-qone(x)*ss;
97 cc = -cc;
98 return invsqrtpi*cc/sqrt(x);
H A Dj1f.c27 double z,s,c,ss,cc; local
33 cc = s-c;
38 cc = z/ss;
40 ss = z/cc;
44 cc = ponef(x)*cc-qonef(x)*ss;
48 cc = -cc;
49 return invsqrtpi*cc/sqrtf(x);
H A Dj0.c68 double s,c,ss,cc,z; local
82 cc = s+c;
88 cc = z/ss;
90 ss = z/cc;
94 cc = pzero(x)*cc-qzero(x)*ss;
97 return invsqrtpi*cc/sqrt(x);
H A Dj0f.c27 float z,s,c,ss,cc; local
29 * j0(x) = 1/sqrt(pi) * (P(0,x)*cc - Q(0,x)*ss) / sqrt(x)
30 * y0(x) = 1/sqrt(pi) * (P(0,x)*ss + Q(0,x)*cc) / sqrt(x)
36 cc = s+c;
41 cc = z/ss;
43 ss = z/cc;
47 cc = pzerof(x)*cc-qzerof(x)*ss;
50 return invsqrtpi*cc/sqrtf(x);
/haiku/src/add-ons/kernel/drivers/disk/nvme/libnvme/
H A Dnvme_ctrlr.c286 union nvme_cc_register cc; local
290 cc.raw = nvme_reg_mmio_read_4(ctrlr, cc.raw);
291 cc.bits.shn = NVME_SHN_NORMAL;
292 nvme_reg_mmio_write_4(ctrlr, cc.raw, cc.raw);
318 union nvme_cc_register cc; local
322 cc.raw = nvme_reg_mmio_read_4(ctrlr, cc.raw);
324 if (cc
376 union nvme_cc_register cc; local
389 union nvme_cc_register cc; local
1406 union nvme_cc_register cc; local
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/contrib/ath_hal/ar9300/
H A Dar9300_radar.c138 HAL_CHANNEL_INTERNAL *base, *cc;
145 cc = AH_PRIVATE(ah)->ah_curchan;
146 if (cc != AH_NULL && cc->channel == c->channel &&
147 (cc->channel_flags & CHAN_FLAGS) == flags) {
148 return cc;
157 cc = &base[lim >> 1];
158 d = c->channel - cc->channel;
160 if ((cc->channel_flags & CHAN_FLAGS) == flags) {
161 return cc;
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/
H A Dah_regdomain.c167 uint16_t cc = rd &~ COUNTRY_ERD_FLAG; local
169 if (allCountries[i].countryCode == cc)
240 uint16_t cc = rd & ~COUNTRY_ERD_FLAG; local
241 country = findCountry(cc);
243 return cc;
265 getregstate(struct ath_hal *ah, HAL_CTRY_CODE cc, HAL_REG_DOMAIN regDmn, argument
272 if (cc == CTRY_DEFAULT && regDmn == SKU_NONE) {
286 cc = getDefaultCountry(ah);
287 country = findCountry(cc);
290 "NULL Country!, cc
658 getchannels(struct ath_hal *ah, struct ieee80211_channel chans[], u_int maxchans, int *nchans, u_int modeSelect, HAL_CTRY_CODE cc, HAL_REG_DOMAIN regDmn, HAL_BOOL enableExtendedChannels, COUNTRY_CODE_TO_ENUM_RD **pcountry, REG_DOMAIN **prd2GHz, REG_DOMAIN **prd5GHz) argument
721 ath_hal_getchannels(struct ath_hal *ah, struct ieee80211_channel chans[], u_int maxchans, int *nchans, u_int modeSelect, HAL_CTRY_CODE cc, HAL_REG_DOMAIN regDmn, HAL_BOOL enableExtendedChannels) argument
816 ath_hal_init_channels(struct ath_hal *ah, struct ieee80211_channel chans[], u_int maxchans, int *nchans, u_int modeSelect, HAL_CTRY_CODE cc, HAL_REG_DOMAIN regDmn, HAL_BOOL enableExtendedChannels) argument
848 ath_hal_set_channels(struct ath_hal *ah, struct ieee80211_channel chans[], int nchans, HAL_CTRY_CODE cc, HAL_REG_DOMAIN rd) argument
902 HAL_CHANNEL_INTERNAL *cc = &AH_PRIVATE(ah)->ah_channels[c->ic_devdata]; local
[all...]
/haiku/src/bin/network/ping/
H A Dping.c931 ssize_t cc; local
958 if ((cc = recvmsg(srecv, &msg, 0)) < 0) {
965 if (cc == 0)
981 pr_pack((char *)packet, cc, &from, tv);
1046 int cc, i; local
1080 cc = ICMP_MINLEN + phdr_len + datalen;
1083 icp.icmp_cksum = in_cksum(outpack, cc);
1091 cc += sizeof(struct ip);
1092 ip.ip_len = htons(cc);
1096 ip.ip_sum = in_cksum(outpackhdr, cc);
1129 pr_pack(char *buf, ssize_t cc, struct sockaddr_in *from, struct timespec *tv) argument
[all...]
H A Dping6.c287 int cc, i; local
1215 cc = recvmsg(srecv, &m, 0);
1216 if (cc < 0) {
1222 } else if (cc == 0) {
1242 pr_pack(packet, cc, &m);
1330 int i, cc; local
1359 cc = ICMP6_NIQLEN + sizeof(dst.sin6_addr);
1374 cc = ICMP6_NIQLEN;
1391 cc = ICMP6_NIQLEN + sizeof(dst.sin6_addr);
1407 cc
1561 pr_pack(u_char *buf, int cc, struct msghdr *mhdr) argument
[all...]
/haiku/src/apps/mail/
H A DHeader.h70 void SetCc(const char* cc);
/haiku/src/add-ons/translators/gif/
H A DGIFSave.cpp584 ColorCache* cc = (ColorCache*)hash->GetItem(key);
585 if (cc == NULL) {
586 cc = new ColorCache();
587 cc->key = key;
588 cc->index = palette->IndexForColor(r, g, b);
589 hash->AddItem((HashItem*)cc);
604 int32 red_total_error = palette->pal[cc->index].red - r;
605 int32 green_total_error = palette->pal[cc->index].green - g;
606 int32 blue_total_error = palette->pal[cc->index].blue - b;
628 return cc
[all...]
/haiku/src/bin/network/traceroute/
H A Dtraceroute.c52 * 4 ccngw-ner-cc.Berkeley.EDU (128.32.136.23) 39 ms 40 ms 39 ms
72 * 4 ccngw-ner-cc.Berkeley.EDU (128.32.136.23) 19 ms 39 ms 39 ms
106 * 4 ccngw-ner-cc.Berkeley.EDU (128.32.136.23) 39 ms 40 ms 19 ms
1040 register int cc; local
1061 while ((cc = wait_for_reply(s, from, &t1)) != 0) {
1066 i = packet_ok(packet, cc, from, seq);
1074 print(packet, cc, from);
1225 if (cc == 0) {
1251 register int cc = 0; local
1276 cc
1286 register int cc; local
1390 packet_ok(register u_char *buf, int cc, register struct sockaddr_in *from, register int seq) argument
1691 print(register u_char *buf, register int cc, register struct sockaddr_in *from) argument
[all...]
/haiku/src/libs/x86emu/
H A Dprim_ops.c69 * By inspection, one gets: cc = ab + r'(a + b)
234 register u32 cc; local
247 cc = (s & d) | ((~res) & (s | d));
248 CONDITIONAL_SET_FLAG(XOR2(cc >> 6), F_OF);
249 CONDITIONAL_SET_FLAG(cc & 0x8, F_AF);
261 register u32 cc; local
274 cc = (s & d) | ((~res) & (s | d));
275 CONDITIONAL_SET_FLAG(XOR2(cc >> 14), F_OF);
276 CONDITIONAL_SET_FLAG(cc & 0x8, F_AF);
290 register u32 cc; local
322 register u32 cc; local
345 register u32 cc; local
370 register u32 cc; local
646 register u32 cc; local
668 register u32 cc; local
690 register u32 cc; local
[all...]
/haiku/src/kits/mail/
H A DMailMessage.cpp129 BString cc; local
136 if (sender.ICompare(address) && cc.FindFirst(address) < 0) {
137 if (cc.Length() > 0)
138 cc << ", ";
140 cc << address;
146 if (cc.Length() > 0)
147 reply->SetCC(cc.String());
343 BEmailMessage::SetCC(const char* cc, uint32 charset, mail_encoding encoding) argument
346 SetHeaderField("Cc", cc, charset, encoding);
/haiku/src/libs/compat/freebsd_wlan/net80211/
H A Dieee80211_regdomain.c278 ic_printf(ic, "no ISO country string for cc %d; using blanks\n",
280 ie->cc[0] = ie->cc[1] = ' ';
282 ie->cc[0] = rd->isocc[0];
283 ie->cc[1] = rd->isocc[1];
291 ie->cc[2] = (rd->location == 'I' ? 'I' :
333 ie->len = frm - ie->cc;
373 "%s: invalid iso cc 0x%x:0x%x\n", __func__,
/haiku/src/libs/stdc++/legacy/
H A Dcinst.cc29 #include <std/complext.cc>
/haiku/src/bin/unzip/
H A Dmatch.c250 unsigned int cc = Case(*s); local
254 if ((unsigned)Case(c) == cc) /* typecast for MSC bug */

Completed in 130 milliseconds

12