| /src/external/gpl3/gdb/dist/sim/ppc/ |
| cap.h | 29 typedef struct _cap cap; typedef in typeref:struct:_cap 32 (cap *) cap_create 37 (cap *db); 41 (cap *db, 46 (cap *db, 51 (cap *db, 56 (cap *db,
|
| cap.c | 24 #include "cap.h" 39 (cap *) 42 return ZALLOC(cap); 47 cap_init(cap *db) 56 error("cap: cap database possibly corrupt"); 61 error("cap: cap database possibly currupt"); 70 cap_internal(cap *db, 84 cap_external(cap *db [all...] |
| /src/external/gpl3/gdb.old/dist/sim/ppc/ |
| cap.h | 29 typedef struct _cap cap; typedef in typeref:struct:_cap 32 (cap *) cap_create 37 (cap *db); 41 (cap *db, 46 (cap *db, 51 (cap *db, 56 (cap *db,
|
| cap.c | 24 #include "cap.h" 39 (cap *) 42 return ZALLOC(cap); 47 cap_init(cap *db) 56 error("cap: cap database possibly corrupt"); 61 error("cap: cap database possibly currupt"); 70 cap_internal(cap *db, 84 cap_external(cap *db [all...] |
| /src/sys/external/bsd/drm2/include/linux/ |
| capability.h | 42 capable(enum linux_capability cap) 44 switch (cap) { 50 panic("unknown cap %d", cap);
|
| /src/sys/opencrypto/ |
| crypto.c | 620 struct cryptocap *cap = NULL; local 634 cap = crypto_checkdriver(i); 635 if (cap == NULL) 637 if (cap->cc_sessions != 0) { 685 crypto_driver_suitable(struct cryptocap *cap, struct cryptoini *cri) 690 if (cap->cc_alg[cr->cri_alg] == 0) { 715 struct cryptocap *cap, *best; local 730 cap = crypto_checkdriver(hid); 731 if (cap == NULL) 734 crypto_driver_lock(cap); 800 struct cryptocap *cap; local 858 struct cryptocap *cap; local 909 struct cryptocap *cap = NULL; local 961 struct cryptocap *cap; local 1006 struct cryptocap *cap = &crypto_drivers[hid]; local 1061 struct cryptocap *cap; local 1109 struct cryptocap *cap; local 1207 struct cryptocap *cap; local 1227 struct cryptocap *cap; local 1247 struct cryptocap *cap; local 1280 struct cryptocap *cap; local 1383 struct cryptocap *cap; local 1442 struct cryptocap *cap = NULL; local 1524 struct cryptocap *cap; local 1766 struct cryptocap *cap; local 1801 struct cryptocap *cap; local [all...] |
| /src/sys/arch/arm/dts/ |
| meson8b-odroidc1.dts | 45 cap-mmc-highspeed; 46 cap-sd-highspeed;
|
| /src/sys/external/bsd/drm2/dist/drm/amd/powerplay/hwmgr/ |
| smu9_baco.h | 30 extern int smu9_baco_get_capability(struct pp_hwmgr *hwmgr, bool *cap);
|
| smu7_baco.h | 30 extern int smu7_baco_get_capability(struct pp_hwmgr *hwmgr, bool *cap);
|
| vega20_baco.h | 30 extern int vega20_baco_get_capability(struct pp_hwmgr *hwmgr, bool *cap);
|
| /src/usr.bin/make/ |
| buf.c | 84 buf->cap += buf->cap > 16 ? buf->cap : 16; 85 buf->data = bmake_realloc(buf->data, buf->cap); 95 if (old_len + bytes_len >= buf->cap) { 97 buf->cap += buf->cap > minIncr ? buf->cap : minIncr; 98 buf->data = bmake_realloc(buf->data, buf->cap); 143 Buf_InitSize(Buffer *buf, size_t cap) [all...] |
| /src/lib/libterminfo/ |
| term_private.h | 56 * cap length, num flags, index, char, 57 * cap length, num numbers, index, number, 58 * cap length, num strings, index, string, 59 * cap length, num undefined caps, name, type (char), flag, number, string 201 _ti_decode_16(const char **cap) 203 int num = (int16_t)le16dec(*cap); 205 *cap += sizeof(uint16_t); 210 _ti_decode_32(const char **cap) 212 int num = (int32_t)le32dec(*cap); 214 *cap += sizeof(uint32_t) [all...] |
| compile.c | 72 const char *cap, *code, *str; local 111 cap = obuf; 116 ind = _ti_decode_16(&cap); 117 num = _ti_decode_num(&cap, ortype); 130 cap = obuf; 135 num = _ti_decode_16(&cap); 139 code = cap; 140 cap += num; 141 type = *cap++; 144 flag = *cap++ 198 const char *cap; local 230 const char *cap; local 370 char *cap; local [all...] |
| term.c | 79 _ti_readterm(TERMINAL *term, const char *cap, size_t caplen, int flags) 88 rtype = *cap++; 109 memcpy(term->_area, cap, term->_arealen); 111 cap = term->_area; 112 len = _ti_decode_16(&cap); 113 term->name = cap; 114 cap += len; 115 len = _ti_decode_16(&cap); 119 term->_alias = cap; 120 cap += len [all...] |
| /src/lib/libcurses/ |
| tscroll.c | 50 __tscroll(const char *cap, int n1, int n2) 53 return __parse_cap(cap, n1, n2); 58 * library. Cap is a string containing printf type escapes to allow 82 __parse_cap (char const *cap, ...) 90 va_start (ap, cap); 93 if (cap == NULL) 99 __CTRACE(__CTRACE_MISC, "__parse_cap: cap = "); 100 for (i = 0; i < strlen(cap); i++) 101 __CTRACE(__CTRACE_MISC, "%s", unctrl(cap[i])); 106 for (dp = result; (c = *cap++) != '\0';) [all...] |
| /src/external/gpl3/gcc/dist/gcc/ |
| diagnostic-color.cc | 112 struct color_cap const *cap; local 117 for (cap = color_dict; cap->name; cap++) 118 if (cap->name_len == name_len 119 && memcmp (cap->name, name, name_len) == 0) 121 if (cap->name == NULL) 124 return cap->val; 159 struct color_cap *cap; local 165 /* Empty name without val (empty cap) [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| diagnostic-color.cc | 107 struct color_cap const *cap; local 112 for (cap = color_dict; cap->name; cap++) 113 if (cap->name_len == name_len 114 && memcmp (cap->name, name, name_len) == 0) 116 if (cap->name == NULL) 119 return cap->val; 154 struct color_cap *cap; local 160 /* Empty name without val (empty cap) [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| sanitizer_vector.h | 109 uptr cap = cap0 * 5 / 4; // 25% growth local 110 if (cap == 0) 111 cap = 16; 112 if (cap < size) 113 cap = size; 114 T *p = (T*)InternalAlloc(cap * sizeof(T)); 121 last_ = begin_ + cap;
|
| /src/crypto/external/apache2/openssl/dist/crypto/rsa/ |
| rsa_mp.c | 100 int cap = RSA_MAX_PRIME_NUM; local 103 cap = 2; 105 cap = 3; 107 cap = 4; 109 if (cap > RSA_MAX_PRIME_NUM) 110 cap = RSA_MAX_PRIME_NUM; 112 return cap;
|
| /src/crypto/external/bsd/openssl/dist/crypto/rsa/ |
| rsa_mp.c | 102 int cap = 5; local 105 cap = 2; 107 cap = 3; 109 cap = 4; 111 if (cap > RSA_MAX_PRIME_NUM) 112 cap = RSA_MAX_PRIME_NUM; 114 return cap;
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/rsa/ |
| rsa_mp.c | 102 int cap = 5; local 105 cap = 2; 107 cap = 3; 109 cap = 4; 111 if (cap > RSA_MAX_PRIME_NUM) 112 cap = RSA_MAX_PRIME_NUM; 114 return cap;
|
| /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/ |
| sanitizer_vector.h | 104 uptr cap = cap0 * 5 / 4; // 25% growth local 105 if (cap == 0) 106 cap = 16; 107 if (cap < size) 108 cap = size; 109 T *p = (T*)InternalAlloc(cap * sizeof(T)); 116 last_ = begin_ + cap;
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/ |
| sanitizer_vector.h | 104 uptr cap = cap0 * 5 / 4; // 25% growth local 105 if (cap == 0) 106 cap = 16; 107 if (cap < size) 108 cap = size; 109 T *p = (T*)InternalAlloc(cap * sizeof(T)); 116 last_ = begin_ + cap;
|
| /src/external/bsd/wpa/dist/src/ap/ |
| ieee802_11_vht.c | 26 struct ieee80211_vht_capabilities *cap; local 47 *pos++ = sizeof(*cap); 49 cap = (struct ieee80211_vht_capabilities *) pos; 50 os_memset(cap, 0, sizeof(*cap)); 51 cap->vht_capabilities_info = host_to_le32( 57 hapd_nsts = le_to_host32(cap->vht_capabilities_info); 59 cap->vht_capabilities_info &= 62 cap->vht_capabilities_info |= 67 os_memcpy(&cap->vht_supported_mcs_set, mode->vht_mcs_set, 8) 315 u32 cap, own_cap, sym_caps; local [all...] |
| /src/external/mit/libuv/dist/src/unix/ |
| proctitle.c | 30 size_t cap; /* Maximum capacity. Computed once in uv_setup_args(). */ member in struct:uv__process_title 58 pt.cap = pt.len + 1; 61 size = pt.cap; 75 size = pt.cap; 87 pt.cap = argv[i - 1] + size - argv[0]; 110 if (len >= pt->cap) { 112 if (pt->cap > 0) 113 len = pt->cap - 1; 117 memset(pt->str + len, '\0', pt->cap - len);
|