HomeSort by relevance Sort by last modified time
    Searched refs:flags (Results 251 - 275 of 16899) sorted by null

<<11121314151617181920>>

  /external/skia/src/core/
SkGraphics.cpp 78 /* flags are of the form param; or param=value; */
79 void SkGraphics::SetFlags(const char* flags) {
80 if (!flags) {
85 size_t len = strlen(flags);
86 const char* paramEnd = flags + len;
87 const char* nextEqual = strchr(flags, '=');
91 nextSemi = strchr(flags, ';');
95 size_t paramLen = paramEnd - flags;
100 if (strncmp(flags, gFlags[i].fStr, paramLen) == 0) {
109 flags = nextSemi + 1
    [all...]
  /external/skqp/src/core/
SkGraphics.cpp 78 /* flags are of the form param; or param=value; */
79 void SkGraphics::SetFlags(const char* flags) {
80 if (!flags) {
85 size_t len = strlen(flags);
86 const char* paramEnd = flags + len;
87 const char* nextEqual = strchr(flags, '=');
91 nextSemi = strchr(flags, ';');
95 size_t paramLen = paramEnd - flags;
100 if (strncmp(flags, gFlags[i].fStr, paramLen) == 0) {
109 flags = nextSemi + 1
    [all...]
  /external/strace/tests/
seccomp_get_action_avail.c 50 k_seccomp(const kernel_ulong_t op, const kernel_ulong_t flags,
53 const long rc = syscall(__NR_seccomp, op, flags, args);
64 kernel_ulong_t flags = (kernel_ulong_t) 0xdeadbeef00000000ULL; local
95 k_seccomp(op, flags, (uintptr_t) act);
102 k_seccomp(op, flags, (uintptr_t) (act + 1));
107 k_seccomp(op, flags, f8ill_ptr_to_kulong(act));
112 flags |= 0xcafef00d;
113 k_seccomp(op, flags, 0);
115 (unsigned int) flags, errstr);
  /external/strace/tests-m32/
seccomp_get_action_avail.c 50 k_seccomp(const kernel_ulong_t op, const kernel_ulong_t flags,
53 const long rc = syscall(__NR_seccomp, op, flags, args);
64 kernel_ulong_t flags = (kernel_ulong_t) 0xdeadbeef00000000ULL; local
95 k_seccomp(op, flags, (uintptr_t) act);
102 k_seccomp(op, flags, (uintptr_t) (act + 1));
107 k_seccomp(op, flags, f8ill_ptr_to_kulong(act));
112 flags |= 0xcafef00d;
113 k_seccomp(op, flags, 0);
115 (unsigned int) flags, errstr);
  /external/strace/tests-mx32/
seccomp_get_action_avail.c 50 k_seccomp(const kernel_ulong_t op, const kernel_ulong_t flags,
53 const long rc = syscall(__NR_seccomp, op, flags, args);
64 kernel_ulong_t flags = (kernel_ulong_t) 0xdeadbeef00000000ULL; local
95 k_seccomp(op, flags, (uintptr_t) act);
102 k_seccomp(op, flags, (uintptr_t) (act + 1));
107 k_seccomp(op, flags, f8ill_ptr_to_kulong(act));
112 flags |= 0xcafef00d;
113 k_seccomp(op, flags, 0);
115 (unsigned int) flags, errstr);
  /external/swiftshader/src/OpenGL/compiler/preprocessor/
Token.cpp 27 flags = 0;
35 (flags == other.flags) &&
43 flags |= AT_START_OF_LINE;
45 flags &= ~AT_START_OF_LINE;
51 flags |= HAS_LEADING_SPACE;
53 flags &= ~HAS_LEADING_SPACE;
59 flags |= EXPANSION_DISABLED;
61 flags &= ~EXPANSION_DISABLED;
  /external/tensorflow/tensorflow/python/platform/
sysconfig.py 64 """Get the compilation flags for custom operators.
67 The compilation flags.
69 flags = []
70 flags.append('-I%s' % get_include())
71 flags.append('-I%s/external/nsync/public' % get_include())
72 flags.append('-D_GLIBCXX_USE_CXX11_ABI=%d' % _CXX11_ABI_FLAG)
73 return flags
78 """Get the link flags for custom operators.
81 The link flags.
83 flags = [
    [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/vp8/
default_temporal_layers.cc 169 int flags = 0; local
174 flags |= VP8_EFLAG_NO_UPD_GF;
175 flags |= VP8_EFLAG_NO_UPD_ARF;
176 flags |= VP8_EFLAG_NO_REF_GF;
177 flags |= VP8_EFLAG_NO_REF_ARF;
180 flags |= VP8_EFLAG_NO_REF_GF;
184 flags |= VP8_EFLAG_NO_REF_ARF;
185 flags |= VP8_EFLAG_NO_UPD_ARF;
186 flags |= VP8_EFLAG_NO_UPD_LAST;
189 flags |= VP8_EFLAG_NO_REF_ARF
    [all...]
  /external/ltp/testcases/kernel/syscalls/fcntl/
fcntl01.c 46 int flags; local
96 flags = fcntl(fd[2], F_GETFL, 0);
97 if ((flags & O_WRONLY) == 0)
99 flags, O_WRONLY);
105 flags = fcntl(fd[2], F_GETFL, 0);
106 if ((flags & (O_NDELAY | O_WRONLY)) == 0)
108 flags, O_NDELAY | O_WRONLY);
114 flags = fcntl(fd[2], F_GETFL, 0);
115 if ((flags & (O_APPEND | O_WRONLY)) == 0)
117 flags, O_APPEND | O_WRONLY)
    [all...]
  /external/tensorflow/tensorflow/compiler/aot/
tfcompile_main.cc 23 #include "tensorflow/compiler/aot/flags.h"
65 Status Main(const MainFlags& flags) {
68 if (flags.config.empty()) {
71 TF_RETURN_IF_ERROR(ReadProtoFile(flags.config, &config));
73 if (flags.dump_fetch_nodes) {
83 if (flags.graph.empty()) {
87 TF_RETURN_IF_ERROR(ReadProtoFile(flags.graph, &graph_def));
89 TF_RETURN_IF_ERROR(CompileGraph(graph_def, config, flags, &compile_result));
94 TF_RETURN_IF_ERROR(WriteStringToFile(env, flags.out_function_object,
97 codegen_opts.gen_name_to_index = flags.gen_name_to_index
122 tensorflow::tfcompile::MainFlags flags; local
    [all...]
  /external/ltp/testcases/kernel/io/disktest/
parse.c 87 args->flags |= CLD_FLG_DUMP;
112 args->flags &= ~CLD_FLG_ALLDIE;
115 args->flags |= CLD_FLG_ERR_MARK;
118 args->flags &= ~CLD_FLG_ERR_REREAD;
121 args->flags &= ~CLD_FLG_LBA_SYNC;
124 args->flags |= CLD_FLG_IO_SERIAL;
127 args->flags |= CLD_FLG_WRITE_ONCE;
130 args->flags |= CLD_FLG_UNIQ_WRT;
133 args->flags |= CLD_FLG_TMO_ERROR;
151 if (args->flags & (CLD_FLG_LINEAR | CLD_FLG_RANDOM))
    [all...]
  /external/syslinux/com32/gpllib/
cpuid.c 41 flag_value = (bool *)((char *)&cpu->flags + cpu_flags_offset[i]);
351 /* Intel-defined flags: level 0x00000001 */
371 /* AMD-defined flags: level 0x80000001 */
493 cpu->flags.fpu = cpu_has(c, X86_FEATURE_FPU);
494 cpu->flags.vme = cpu_has(c, X86_FEATURE_VME);
495 cpu->flags.de = cpu_has(c, X86_FEATURE_DE);
496 cpu->flags.pse = cpu_has(c, X86_FEATURE_PSE);
497 cpu->flags.tsc = cpu_has(c, X86_FEATURE_TSC);
498 cpu->flags.msr = cpu_has(c, X86_FEATURE_MSR);
499 cpu->flags.pae = cpu_has(c, X86_FEATURE_PAE)
    [all...]
  /external/ImageMagick/coders/
dng.c 247 entry->flags^=CoderBlobSupportFlag;
248 entry->flags|=CoderSeekableStreamFlag;
253 entry->flags^=CoderBlobSupportFlag;
254 entry->flags|=CoderSeekableStreamFlag;
259 entry->flags^=CoderBlobSupportFlag;
260 entry->flags|=CoderSeekableStreamFlag;
265 entry->flags^=CoderBlobSupportFlag;
266 entry->flags|=CoderSeekableStreamFlag;
271 entry->flags^=CoderBlobSupportFlag;
272 entry->flags|=CoderSeekableStreamFlag
    [all...]
  /external/syslinux/com32/hdt/
hdt-menu-processor.c 37 snprintf(output_buffer, sizeof output_buffer, "Flags : %s", buffer);
38 snprintf(statbuffer, sizeof statbuffer, "Flags: %s", buffer);
181 if (hardware->cpu.flags.smp) {
191 if (hardware->cpu.flags.lm) {
203 if ((hardware->cpu.flags.vmx) || (hardware->cpu.flags.svm)) {
216 show_flag(menu, buffer1, hardware->cpu.flags.fpu, "fpu ", false);
217 show_flag(menu, buffer1, hardware->cpu.flags.vme, "vme ", false);
218 show_flag(menu, buffer1, hardware->cpu.flags.de, "de ", false);
219 show_flag(menu, buffer1, hardware->cpu.flags.pse, "pse ", false)
    [all...]
  /external/iproute2/ip/
iplink_vlan.c 88 struct ifla_vlan_flags flags = { 0 }; local
104 flags.mask |= VLAN_FLAG_REORDER_HDR;
106 flags.flags |= VLAN_FLAG_REORDER_HDR;
108 flags.flags &= ~VLAN_FLAG_REORDER_HDR;
113 flags.mask |= VLAN_FLAG_GVRP;
115 flags.flags |= VLAN_FLAG_GVRP;
117 flags.flags &= ~VLAN_FLAG_GVRP
216 struct ifla_vlan_flags *flags; local
    [all...]
  /external/webrtc/webrtc/video/
screenshare_loopback.cc 21 namespace flags { namespace in namespace:webrtc
23 // Flags common with video loopback, with different default values.
64 // Flags common with video loopback, with equal default values.
185 // Screenshare-specific flags.
206 } // namespace flags
210 pipe_config.loss_percent = flags::LossPercent();
211 pipe_config.link_capacity_kbps = flags::LinkCapacityKbps();
212 pipe_config.queue_length_packets = flags::QueueSize();
213 pipe_config.queue_delay_ms = flags::AvgPropagationDelayMs();
214 pipe_config.delay_standard_deviation_ms = flags::StdPropagationDelayMs()
    [all...]
  /external/pcre/dist2/src/sljit/
sljitNativeSPARC_32.c 36 #define ARG2(flags, src2) ((flags & SRC2_IMM) ? IMM(src2) : S2(src2))
38 static SLJIT_INLINE sljit_s32 emit_single_op(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 flags,
48 SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & SRC2_IMM));
55 SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & SRC2_IMM));
56 if ((flags & (REG_DEST | REG2_SOURCE)) == (REG_DEST | REG2_SOURCE)) {
68 SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & SRC2_IMM));
69 if ((flags & (REG_DEST | REG2_SOURCE)) == (REG_DEST | REG2_SOURCE)) {
78 SLJIT_ASSERT(src1 == TMP_REG1 && !(flags & SRC2_IMM));
79 return push_inst(compiler, XNOR | (flags & SET_FLAGS) | D(dst) | S1(0) | S2(src2), DR(dst) | (flags & SET_FLAGS))
    [all...]
  /bionic/libc/include/bits/fortify/
socket.h 45 ssize_t recvfrom(int fd, void* const buf __pass_object_size0, size_t len, int flags, struct sockaddr* src_addr, socklen_t* addr_len)
52 return __call_bypassing_fortify(recvfrom)(fd, buf, len, flags, src_addr, addr_len);
54 return __recvfrom_chk(fd, buf, len, bos, flags, src_addr, addr_len);
60 ssize_t sendto(int fd, const void* const buf __pass_object_size0, size_t len, int flags, const struct sockaddr* dest_addr, socklen_t addr_len)
67 return __call_bypassing_fortify(sendto)(fd, buf, len, flags, dest_addr, addr_len);
69 return __sendto_chk(fd, buf, len, bos, flags, dest_addr, addr_len);
74 ssize_t recv(int socket, void* const buf __pass_object_size0, size_t len, int flags)
78 return recvfrom(socket, buf, len, flags, NULL, 0);
82 ssize_t send(int socket, const void* const buf __pass_object_size0, size_t len, int flags)
86 return sendto(socket, buf, len, flags, NULL, 0)
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/TcgConfigDxe/
TcgConfig.vfr 44 flags = INTERACTIVE | RESET_REQUIRED,
50 option text = STRING_TOKEN(STR_DISABLE), value = PHYSICAL_PRESENCE_DISABLE, flags = 0;
51 option text = STRING_TOKEN(STR_TPM_ACTIVATE), value = PHYSICAL_PRESENCE_ACTIVATE, flags = 0;
52 option text = STRING_TOKEN(STR_TPM_DEACTIVATE), value = PHYSICAL_PRESENCE_DEACTIVATE, flags = 0;
53 option text = STRING_TOKEN(STR_TPM_DEACTIVATE_DISABLE), value = PHYSICAL_PRESENCE_DEACTIVATE_DISABLE, flags = 0;
60 option text = STRING_TOKEN(STR_TPM_CLEAR), value = PHYSICAL_PRESENCE_CLEAR, flags = 0;
61 option text = STRING_TOKEN(STR_TPM_CLEAR_ENABLE_ACTIVATE), value = PHYSICAL_PRESENCE_CLEAR_ENABLE_ACTIVATE, flags = 0;
64 option text = STRING_TOKEN(STR_ENABLE), value = PHYSICAL_PRESENCE_ENABLE, flags = DEFAULT;
65 option text = STRING_TOKEN(STR_TPM_ENABLE_ACTIVATE), value = PHYSICAL_PRESENCE_ENABLE_ACTIVATE, flags = 0;
66 option text = STRING_TOKEN(STR_TPM_ENABLE_ACTIVATE_CLEAR), value = PHYSICAL_PRESENCE_ENABLE_ACTIVATE_CLEAR, flags = 0;
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
vfwscanf.c 82 * Flags used during conversion.
147 int flags; /* flags as defined above */ local
192 flags = 0;
211 flags |= SUPPRESS;
214 flags |= INTMAXT;
217 if (flags & LONG) {
218 flags &= ~LONG;
219 flags |= LONGLONG;
221 flags |= LONG;
    [all...]
  /external/strace/
xlat.c 143 * Interpret `xlat' as an array of flags
144 * print the entries whose bits are on in `flags'
147 addflags(const struct xlat *xlat, uint64_t flags)
150 if (xlat->val && (flags & xlat->val) == xlat->val) {
152 flags &= ~xlat->val;
155 if (flags) {
156 tprintf("|%#" PRIx64, flags);
161 * Interpret `xlat' as an array of flags.
162 * Print to static string the entries whose bits are on in `flags'
163 * Return static string. If 0 is provided as flags, and there is no flag tha
    [all...]
  /external/ImageMagick/MagickCore/
geometry.c 68 % height, x, and y values. It also returns flags that indicates which
70 % whether the x or y values are negative. In addition, there are flags to
113 flags;
118 flags=NoValue;
120 return(flags);
122 return(flags);
136 flags|=PercentValue;
142 flags|=AspectValue;
148 flags|=LessValue;
154 flags|=GreaterValue
111 flags; local
463 flags; local
599 flags; local
690 flags; local
740 flags; local
854 flags; local
1184 flags; local
1293 flags; local
1319 flags; local
1467 flags; local
1536 flags; local
    [all...]
  /external/compiler-rt/lib/BlocksRuntime/
runtime.c 285 static void *_Block_copy_internal(const void *arg, const int flags) {
287 const bool wantsOne = (WANTS_ONE & flags) == WANTS_ONE;
289 //printf("_Block_copy_internal(%p, %x)\n", arg, flags);
295 if (aBlock->flags & BLOCK_NEEDS_FREE) {
297 latching_incr_int(&aBlock->flags);
300 else if (aBlock->flags & BLOCK_IS_GC) {
302 if (wantsOne && ((latching_incr_int(&aBlock->flags) & BLOCK_REFCOUNT_MASK) == 1)) {
308 else if (aBlock->flags & BLOCK_IS_GLOBAL) {
318 result->flags &= ~(BLOCK_REFCOUNT_MASK); // XXX not needed
319 result->flags |= BLOCK_NEEDS_FREE | 1
330 unsigned long int flags = aBlock->flags; local
    [all...]
  /external/honggfuzz/third_party/android/libBlocksRuntime/
runtime.c 285 static void *_Block_copy_internal(const void *arg, const int flags) {
287 const bool wantsOne = (WANTS_ONE & flags) == WANTS_ONE;
289 //printf("_Block_copy_internal(%p, %x)\n", arg, flags);
295 if (aBlock->flags & BLOCK_NEEDS_FREE) {
297 latching_incr_int(&aBlock->flags);
300 else if (aBlock->flags & BLOCK_IS_GC) {
302 if (wantsOne && ((latching_incr_int(&aBlock->flags) & BLOCK_REFCOUNT_MASK) == 1)) {
308 else if (aBlock->flags & BLOCK_IS_GLOBAL) {
318 result->flags &= ~(BLOCK_REFCOUNT_MASK); // XXX not needed
319 result->flags |= BLOCK_NEEDS_FREE | 1
330 unsigned long int flags = aBlock->flags; local
    [all...]
  /external/vboot_reference/tests/
tpm_bootmode_tests.c 61 int flags; local
67 /* Exhaustively test all permutations of key block flags
69 for (flags = 0; flags < 16; flags++) {
71 if (6 == flags)
73 else if (7 == flags)
81 flags, 0), 0,
85 recdev, flags);
92 recdev, flags);
    [all...]

Completed in 443 milliseconds

<<11121314151617181920>>