Searched defs:flag (Results 1 - 25 of 47) sorted by relevance

12

/device/google/marlin/camera/QCamera2/stack/mm-camera-test/src/
H A Dmm_qcamera_queue.c69 int flag = 1; local
72 flag = 0;
76 return flag;
/device/generic/goldfish-opengl/shared/OpenglCodecCommon/
H A DTcpStream.cpp74 DWORD flag; local
76 int flag;
78 flag = 1;
79 setsockopt( sock, IPPROTO_TCP, TCP_NODELAY, (const char*)&flag, sizeof(flag) );
/device/google/marlin/camera/QCamera2/util/
H A DQCameraQueue.cpp125 bool flag = true; local
128 flag = false;
131 return flag;
/device/linaro/bootloader/arm-trusted-firmware/bl31/
H A Dinterrupt_mgmt.c103 uint32_t flag, bit_pos; local
105 flag = get_interrupt_rm_flag(interrupt_type_flags, security_state);
107 intr_type_descs[type].scr_el3[security_state] = flag << bit_pos;
113 cm_write_scr_el3_bit(security_state, bit_pos, flag);
150 uint32_t bit_pos, flag; local
154 flag = get_interrupt_rm_flag(INTR_DEFAULT_RM, security_state);
157 cm_write_scr_el3_bit(security_state, bit_pos, flag);
168 uint32_t bit_pos, flag; local
172 flag = get_interrupt_rm_flag(intr_type_descs[type].flags,
176 cm_write_scr_el3_bit(security_state, bit_pos, flag);
[all...]
/device/linaro/bootloader/arm-trusted-firmware/tools/fiptool/
H A Dwin_posix.h54 /* Define flag values for _access. */
78 /* If not null, when option present, *flag is set to val. */
79 int *flag; member in struct:option
83 * (and save in *flag when not null)
/device/linaro/bootloader/edk2/ArmPkg/Library/ArmSoftFloatLib/
H A Darm-gcc.h41 8 bits. The `flag' type must be able to hold either a 0 or 1. For most
42 implementations of C, `flag', `uint8', and `int8' should all be `typedef'ed
46 typedef int flag; typedef
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/enc/
H A Dutf16_le.c126 utf16le_mbc_case_fold(OnigCaseFoldType flag, argument
133 if ((flag & ONIGENC_CASE_FOLD_TURKISH_AZERI) != 0) {
149 return onigenc_unicode_mbc_case_fold(ONIG_ENCODING_UTF16_LE, flag, pp, end,
155 utf16le_is_mbc_ambiguous(OnigCaseFoldType flag, const UChar** pp,
165 if (*p == 0xdf && (flag & INTERNAL_ONIGENC_CASE_FOLD_MULTI_CHAR) != 0) {
202 utf16le_get_case_fold_codes_by_str(OnigCaseFoldType flag, argument
206 flag, p, end, items);
/device/linaro/bootloader/edk2/StdLib/Include/Aarch64/
H A Darm-gcc.h37 8 bits. The `flag' type must be able to hold either a 0 or 1. For most
38 implementations of C, `flag', `uint8', and `int8' should all be `typedef'ed
42 typedef int flag; typedef
/device/linaro/bootloader/edk2/StdLib/Include/Arm/
H A Darm-gcc.h41 8 bits. The `flag' type must be able to hold either a 0 or 1. For most
42 implementations of C, `flag', `uint8', and `int8' should all be `typedef'ed
46 typedef int flag; typedef
/device/linaro/bootloader/arm-trusted-firmware/plat/mediatek/mt8173/drivers/spm/
H A Dspm_mcdi.c407 unsigned int pwr_status, shift, i, flag = 0; local
417 flag |= (pwr_status & (1 << shift)) >> shift;
419 if (!flag)
427 flag |= (pwr_status & (1 << shift)) >> shift;
429 if (!flag)
/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
H A Dselect.c118 static int16_t flag[3] = { POLLRDNORM, POLLWRNORM, POLLRDBAND }; local
129 pfd.events = flag[msk];
/device/google/contexthub/firmware/os/drivers/leds/
H A Dleds_gpio.c126 static void sensorLedsOnOff(bool flag) argument
131 gpioSet(mTask.leds[i].ledid, flag ? mTask.leds[i].val : 0);
H A Dleds_lp3943.c244 static void sensorLedsOnOff(bool flag) argument
251 lval = flag ? mTask.led[index] : 0;
/device/linaro/bootloader/arm-trusted-firmware/plat/hisilicon/hikey960/
H A Dhikey960_bl1_setup.c464 static void isps_control_clock(int flag) argument
468 /* flag: 0 -- disable clock, 1 -- enable clock */
469 if (flag) {
/device/linaro/bootloader/edk2/OvmfPkg/Include/IndustryStandard/Xen/io/
H A Dblkif.h200 * requests with the BLKIF_DISCARD_SECURE flag set.
460 * the BLKIF_DISCARD_SECURE flag is set on the request, all copies of the
557 UINT8 flag; /* BLKIF_DISCARD_SECURE or zero */ member in struct:blkif_request_discard
/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
H A Dgetnetbydns.c128 char *paux1 = &aux1[0], *paux2 = &aux2[0], flag = 0; local
208 if (nchar != 1 || *in != '0' || flag) {
209 flag = 1;
/device/google/wahoo/usb/
H A DUsbGadget.cpp159 uint64_t flag; local
160 read(usbGadget->mEventFd, &flag, sizeof(flag));
161 if (flag == 100) {
244 uint64_t flag = 100; local
246 write(mEventFd, &flag, sizeof(flag));
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A Dsignalmodule.c375 "siginterrupt(sig, flag) -> None\n\
376 change system call restart behaviour: if flag is False, system calls\n\
384 int flag; local
386 if (!PyArg_ParseTuple(args, "ii:siginterrupt", &sig_num, &flag))
393 if (siginterrupt(sig_num, flag)<0) {
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A Dsignalmodule.c367 "siginterrupt(sig, flag) -> None\n\
368 change system call restart behaviour: if flag is False, system calls\n\
376 int flag; local
378 if (!PyArg_ParseTuple(args, "ii:siginterrupt", &sig_num, &flag))
385 if (siginterrupt(sig_num, flag)<0) {
/device/linaro/bootloader/arm-trusted-firmware/plat/hisilicon/hikey960/drivers/pwrc/
H A Dhisi_pwrc.c33 /* cpu hotplug flag api */
203 unsigned int flag = BIT((cluster<<2) + core + 16); local
207 mmio_setbits_32(REG_SCBAKDATA3_OFFSET, flag);
214 unsigned int flag = BIT((cluster<<2) + core + 16); local
218 mmio_clrbits_32(REG_SCBAKDATA3_OFFSET, flag);
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
H A Dregenc.c396 onigenc_ascii_apply_all_case_fold(OnigCaseFoldType flag ARG_UNUSED,
418 onigenc_ascii_get_case_fold_codes_by_str(OnigCaseFoldType flag ARG_UNUSED,
439 ss_apply_all_case_fold(OnigCaseFoldType flag ARG_UNUSED,
450 int ess_tsett_flag, OnigCaseFoldType flag,
456 r = onigenc_ascii_apply_all_case_fold(flag, f, arg);
470 return ss_apply_all_case_fold(flag, f, arg);
478 int ess_tsett_flag, OnigCaseFoldType flag ARG_UNUSED,
576 onigenc_ascii_mbc_case_fold(OnigCaseFoldType flag ARG_UNUSED, const UChar** p,
587 onigenc_ascii_is_mbc_ambiguous(OnigCaseFoldType flag,
662 onigenc_mbn_mbc_case_fold(OnigEncoding enc, OnigCaseFoldType flag ARG_UNUSE
448 onigenc_apply_all_case_fold_with_map(int map_size, const OnigPairCaseFoldCodes map[], int ess_tsett_flag, OnigCaseFoldType flag, OnigApplyAllCaseFoldFunc f, void* arg) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A Dsymtable.c879 symtable_add_def(struct symtable *st, PyObject *name, int flag) argument
891 if ((flag & DEF_PARAM) && (val & DEF_PARAM)) {
899 val |= flag;
901 val = flag;
911 if (flag & DEF_PARAM) {
914 } else if (flag & DEF_GLOBAL) {
917 val = flag;
H A Dpythonrun.c109 /* API to access the initialized flag -- useful for esoteric use */
130 add_flag(int flag, const char *envs) argument
133 if (flag < env)
134 flag = env;
135 if (flag < 1)
136 flag = 1;
137 return flag;
1109 /* Don't exit if -i flag was given. This flag is set to 0
1802 * b) the -i flag wa
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Dsymtable.c877 symtable_add_def(struct symtable *st, PyObject *name, int flag) argument
889 if ((flag & DEF_PARAM) && (val & DEF_PARAM)) {
897 val |= flag;
899 val = flag;
909 if (flag & DEF_PARAM) {
912 } else if (flag & DEF_GLOBAL) {
915 val = flag;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
H A Dtextio.c489 unsigned PY_LONG_LONG flag; local
496 if (!PyArg_Parse(state, "(OK)", &buffer, &flag)) {
505 flag = 0;
507 flag <<= 1;
509 flag |= 1;
510 return Py_BuildValue("NK", buffer, flag);
517 unsigned PY_LONG_LONG flag; local
519 if (!PyArg_Parse(state, "(OK)", &buffer, &flag))
522 self->pendingcr = (int) flag & 1;
523 flag >>
[all...]

Completed in 436 milliseconds

12