Searched defs:used (Results 126 - 150 of 172) sorted by relevance

1234567

/external/skia/src/pathops/
H A DSkOpSegment.cpp525 for (int index = 0; index < i.used(); ++index) {
842 int used = i.used(); local
843 for (int index = 0; index < used; ++index) {
1197 for (int index = 0; index < i.used(); ++index) {
H A DSkPathOpsTSect.h320 int used = i.intersectRay(c2, perp); local
322 if (used == 0 || used == 3) {
328 SkASSERT(used <= 2);
329 if (used == 2) {
1265 for (int index = 0; index < oppRayI.used(); ++index) {
1269 for (int oIndex = 0; oIndex < thisRayI.used(); ++oIndex) {
1290 return i->used();
2068 int last = intersections->used() - 1;
2094 SkASSERT(intersections->used() <
[all...]
/external/squashfs-tools/squashfs-tools/
H A Dunsquashfs.c316 cache->used = 0;
350 * remove it from the free list and increment cache used count.
352 if(entry->used == 0) {
353 cache->used ++;
356 entry->used ++;
390 * Increment used which tracks how many buffers in the
391 * cache are actively in use (the other blocks, count - used,
393 * re-used).
397 entry->used = 1;
401 cache->used
2400 int max_digits, used, hashes, spaces; local
[all...]
/external/toybox/toys/pending/
H A Ddhcp.c324 int used; local
331 used = vsnprintf(NULL, 0, s, t);
332 used++;
335 msg = xmalloc(used);
336 vsnprintf(msg, used, s, p);
H A Ddhcpd.c136 uint8_t server_mac[6]; // our MAC address (used only for ARP probing)
281 int used; local
288 used = vsnprintf(NULL, 0, s, t);
289 used++;
292 msg = xmalloc(used);
293 vsnprintf(msg, used, s, p);
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dlibtommath.c127 int used, alloc, sign; member in struct:__anon17321
133 #define mp_iszero(a) (((a)->used == 0) ? MP_YES : MP_NO)
134 #define mp_iseven(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 0)) ? MP_YES : MP_NO)
135 #define mp_isodd(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 1)) ? MP_YES : MP_NO)
139 #define s_mp_mul(a, b, c) s_mp_mul_digs(a, b, c, (a)->used + (b)->used + 1)
201 /* reverse an array, used for radix code */
228 if (a->used > b->used) {
229 min = b->used;
[all...]
/external/wpa_supplicant_8/src/tls/
H A Dlibtommath.c127 int used, alloc, sign; member in struct:__anon17566
133 #define mp_iszero(a) (((a)->used == 0) ? MP_YES : MP_NO)
134 #define mp_iseven(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 0)) ? MP_YES : MP_NO)
135 #define mp_isodd(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 1)) ? MP_YES : MP_NO)
139 #define s_mp_mul(a, b, c) s_mp_mul_digs(a, b, c, (a)->used + (b)->used + 1)
201 /* reverse an array, used for radix code */
228 if (a->used > b->used) {
229 min = b->used;
[all...]
/external/wpa_supplicant_8/wpa_supplicant/
H A Dconfig.c26 * Structure for network configuration parsing. This data is used to implement
1105 size_t used, len; local
1108 used = 0;
1118 if (used == len) {
1132 freqs[used] = atoi(pos);
1133 if (freqs[used] == 0)
1135 used++;
1758 * data length. Unlike STR(), this can be used to store arbitrary binary data
1801 * Table of network configuration variables. This table is used to parse each
1810 * .param3 and .param4 can be used t
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dlibtommath.c127 int used, alloc, sign; member in struct:__anon17809
133 #define mp_iszero(a) (((a)->used == 0) ? MP_YES : MP_NO)
134 #define mp_iseven(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 0)) ? MP_YES : MP_NO)
135 #define mp_isodd(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 1)) ? MP_YES : MP_NO)
139 #define s_mp_mul(a, b, c) s_mp_mul_digs(a, b, c, (a)->used + (b)->used + 1)
201 /* reverse an array, used for radix code */
228 if (a->used > b->used) {
229 min = b->used;
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fUniformApiTests.cpp482 // When the same UniformCollection is needed in several places, a SharedPtr is used instead.
753 // ARRAYUSAGE_ONLY_MIDDLE_INDEX: only middle index of each array is used in shader. If not given, use all indices.
766 // BOOLEANAPITYPE: type used to pass booleans to and from GL api. If none given, use float.
837 BasicUniformReportRef (const char* const name_, const int minS, const int maxS, const glu::DataType type_, const bool used) argument
838 : name(name_), minSize(minS), maxSize(maxS), type(type_), isUsedInShader(used) { DE_ASSERT(minSize <= maxSize); }
839 BasicUniformReportRef (const char* const name_, const glu::DataType type_, const bool used) argument
840 : name(name_), minSize(1), maxSize(1), type(type_), isUsedInShader(used) {}
1378 log << TestLog::Message << "// FAILURE: " << uniform.name << " was used in shader, but has location -1" << TestLog::EndMessage;
2078 // \note Although this is only used in UniformApiTest::init, it needs to be defined here as it's used a
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fProgramUniformTests.cpp499 // When the same UniformCollection is needed in several places, a SharedPtr is used instead.
808 // ARRAYUSAGE_ONLY_MIDDLE_INDEX: only middle index of each array is used in shader. If not given, use all indices.
824 // BOOLEANAPITYPE: type used to pass booleans to and from GL api. If none given, use float.
892 BasicUniformReportRef (const char* const name_, const int minS, const int maxS, const glu::DataType type_, const bool used) argument
893 : name(name_), minSize(minS), maxSize(maxS), type(type_), isUsedInShader(used) { DE_ASSERT(minSize <= maxSize); }
894 BasicUniformReportRef (const char* const name_, const glu::DataType type_, const bool used) argument
895 : name(name_), minSize(1), maxSize(1), type(type_), isUsedInShader(used) {}
1294 log << TestLog::Message << "// FAILURE: " << uniform.name << " was used in shader, but has location -1" << TestLog::EndMessage;
1857 // \note Although this is only used in ProgramUniformTests::init, it needs to be defined here as it's used a
[all...]
/external/elfutils/src/src/
H A Delflint.c711 section [%2d] '%s': symbol %zu: XINDEX used for index which would fit in st_shndx (%" PRIu32 ")\n"),
1053 /* When a .rel.dyn section is used a DT_RELCOUNT dynamic section
1083 section [%2d] '%s': DT_RELCOUNT used for this RELA section\n"),
1137 section [%2d] '%s': DT_RELACOUNT used for this REL section\n"),
1375 section [%2d] '%s': relocation %zu: only symbol '_GLOBAL_OFFSET_TABLE_' can be used with %s\n"),
1680 section [%2d] '%s': entry %zu: level 2 tag %s used\n"),
2296 /* None of these pointers should be NULL since we used the
2320 char *used = alloca (nentries); local
2321 memset (used, '\0', nentries);
2323 /* First go over the GNU_HASH table and mark the entries as used
[all...]
H A Dld.h31 /* Character used to introduce version name after symbol. */
39 be used. */
74 overwrite this value. It instead will be used once the group is
82 /* Name used as reference in DT_NEEDED entries. This is normally
107 used in a reference. */
108 bool used; member in struct:usedfiles
114 /* If nonzero this is the archive sequence number which can be used to
167 /* True if the section is used. */
168 bool used; member in struct:usedfiles::scninfo
180 /* Size of relocations in this section. Only used fo
689 bool used; member in struct:scnhead
[all...]
/external/kernel-headers/original/uapi/sound/
H A Dasequencer.h531 int used; /* queue is used with this client member in struct:snd_seq_queue_client
/external/libdrm/intel/
H A Dintel_bufmgr_gem.c190 * Virtual address of the buffer allocated by user, used for userptr
207 * Boolean of whether this buffer has been used as a relocation
219 * Boolean of whether this buffer can be re-used
942 * This can be used when one application needs to pass a buffer object
986 /* Now see if someone has used a prime handle to get this
1458 * This is used in the implementation of GL_ARB_map_buffer_range: The
1478 * track where the buffer was last used on the CPU side in
1708 * Sets the object to the GTT read and possibly write domain, used by the X
2277 aub_exec(drm_intel_bo *bo, int ring_flag, int used) argument
2293 { AUB_TRACE_TYPE_BATCH, 0, used },
2322 drm_intel_gem_bo_exec(drm_intel_bo *bo, int used, drm_clip_rect_t * cliprects, int num_cliprects, int DR4) argument
2391 do_exec2(drm_intel_bo *bo, int used, drm_intel_context *ctx, drm_clip_rect_t *cliprects, int num_cliprects, int DR4, unsigned int flags) argument
2488 drm_intel_gem_bo_exec2(drm_intel_bo *bo, int used, drm_clip_rect_t *cliprects, int num_cliprects, int DR4) argument
2497 drm_intel_gem_bo_mrb_exec2(drm_intel_bo *bo, int used, drm_clip_rect_t *cliprects, int num_cliprects, int DR4, unsigned int flags) argument
2506 drm_intel_gem_bo_context_exec(drm_intel_bo *bo, drm_intel_context *ctx, int used, unsigned int flags) argument
[all...]
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp103 /// isLeakCheckerRoot - Is this global variable possibly used by a leak checker
934 // If the initialization boolean was used, insert it, otherwise delete it.
1481 // We can't optimize this if the malloc itself is used in a complex way,
1595 /// whenever it is used. This exposes the values to other scalar optimizations.
1929 // The function is not used by a trampoline intrinsic, so it is safe
2225 /// CallStack - This is used to detect recursion. In pathological situations
2749 /// \brief An easy to access representation of llvm.used and llvm.compiler.used.
2765 used_iterator_range used() { function in class:__anon10961::LLVMUsed
2799 "element from llvm.compiler.used");
[all...]
/external/ppp/pppd/
H A Dsys-linux.c14 * 2. The name(s) of the authors of this software must not be used to
47 * 3. The name "Carnegie Mellon University" must not be used to
189 * which is attached to the ppp unit and is used for controlling it.
1506 int used = 1; local
1520 used = 0;
1521 if (used && col >= route_num_cols)
2002 * We used to open the serial device and set it to the ppp line
2129 * Validate the version of the driver against the version that we used.
/external/deqp/modules/gles3/functional/
H A Des3fUniformApiTests.cpp548 // When the same UniformCollection is needed in several places, a SharedPtr is used instead.
914 // ARRAYUSAGE_ONLY_MIDDLE_INDEX: only middle index of each array is used in shader. If not given, use all indices.
930 // BOOLEANAPITYPE: type used to pass booleans to and from GL api. If none given, use float.
1002 BasicUniformReportRef (const char* const name_, const int minS, const int maxS, const glu::DataType type_, const bool used) argument
1003 : name(name_), minSize(minS), maxSize(maxS), type(type_), isUsedInShader(used) { DE_ASSERT(minSize <= maxSize); }
1004 BasicUniformReportRef (const char* const name_, const glu::DataType type_, const bool used) argument
1005 : name(name_), minSize(1), maxSize(1), type(type_), isUsedInShader(used) {}
1735 log << TestLog::Message << "// FAILURE: " << uniform.name << " was used in shader, but has location -1" << TestLog::EndMessage;
2589 // \note Although this is only used in UniformApiTest::init, it needs to be defined here as it's used a
[all...]
/external/dnsmasq/src/
H A Ddnsmasq.h360 int isloop, used; member in struct:iname
648 /* globally used stuff for DNS */
/external/kernel-headers/original/uapi/drm/
H A Ddrm.h218 int mtrr; /**< MTRR slot used */
274 -- they will be used to support the
366 int used; /**< Amount of buffer in use (for DMA) */ member in struct:drm_buf_pub
533 unsigned long physical; /**< Physical used by i810 */
H A Di915_drm.h284 int used; /* nr bytes in use */ member in struct:drm_i915_batchbuffer
569 * the system and are used to flush and invalidate as
574 /** Render cache, used by 2D and 3D drawing */
576 /** Sampler cache, used by texture engine */
578 /** Command queue, used to load batch buffers */
580 /** Instruction cache, used by shader programs */
629 /** Bytes used in batchbuffer from batch_start_offset */
681 /** Bytes used in batchbuffer from batch_start_offset */
706 __u64 rsvd1; /* now used for context info */
770 * The high word is used t
[all...]
/external/libdrm/include/drm/
H A Ddrm.h219 int mtrr; /**< MTRR slot used */
275 -- they will be used to support the
367 int used; /**< Amount of buffer in use (for DMA) */ member in struct:drm_buf_pub
535 unsigned long physical; /**< Physical used by i810 */
H A Di915_drm.h284 int used; /* nr bytes in use */ member in struct:drm_i915_batchbuffer
569 * the system and are used to flush and invalidate as
574 /** Render cache, used by 2D and 3D drawing */
576 /** Sampler cache, used by texture engine */
578 /** Command queue, used to load batch buffers */
580 /** Instruction cache, used by shader programs */
629 /** Bytes used in batchbuffer from batch_start_offset */
681 /** Bytes used in batchbuffer from batch_start_offset */
706 __u64 rsvd1; /* now used for context info */
770 * The high word is used t
[all...]
/external/mdnsresponder/mDNSCore/
H A DDNSCommon.c56 #define NSIPCPortAsNumber 5030 // Port used for dnsextd to talk to local nameserver bound to loopback
59 #define DNSEXTPortAsNumber 5352 // Port used for end-to-end DNS operations like LLQ, Updates with Leases, etc.
137 mDNSu32 slot, used = 0; local
141 if (rr->resrec.InterfaceID == id) used++;
142 return(used);
173 // long as this routine is only used for debugging messages, it probably isn't a big problem.
856 // UTF-16 surrogate pairs are used in UTF-16 to encode values larger than 0xFFFF.
1271 // a valid InterfaceID (e.g., scoped /etc/hosts) and can be used to answer unicast questions unlike
1272 // multicast resource records (which has a valid InterfaceID) which can't be used to answer
1327 // LocalOnly authoritative answers are exempt. LocalOnly authoritative answers are used fo
[all...]
/external/valgrind/VEX/priv/
H A Dir_opt.c33 used to endorse or promote products derived from this software
185 Int used; member in struct:__anon15656
193 h->used = 0;
207 for (i = 0; i < h->used; i++) {
226 for (i = 0; i < h->used; i++) {
234 if (h->used == h->size) {
246 h->used = j;
254 vassert(h->used < h->size);
255 h->inuse[h->used] = True;
256 h->key[h->used]
[all...]

Completed in 737 milliseconds

1234567