Home
last modified time | relevance | path

Searched refs:pcs (Results 1 – 25 of 31) sorted by relevance

12

/third_party/uboot/u-boot-2020.01/include/andestech/
Dandes_pcu.h15 struct pcs { struct
53 struct pcs pcs1; /* 0xA0-0xB0: PCS1 (clock scaling) */
55 struct pcs pcs2; /* 0xC0-0xD0: PCS2 (AHB clock gating) */
57 struct pcs pcs3; /* 0xE0-0xF0: PCS3 (APB clock gating) */
59 struct pcs pcs4; /* 0x100-0x110: PCS4 main PLL scaling */
61 struct pcs pcs5; /* 0x120-0x130: PCS5 PCI PLL scaling */
63 struct pcs pcs6; /* 0x140-0x150: PCS6 AC97 PLL scaling */
65 struct pcs pcs7; /* 0x160-0x170: PCS7 GMAC PLL scaling */
67 struct pcs pcs8; /* 0x180-0x190: PCS8 voltage scaling */
69 struct pcs pcs9; /* 0x1A0-0x1B0: PCS9 power control */
/third_party/grpc/tools/http2_interop/
Dtestsuite.go30 pcs := make([]uintptr, 10)
31 total := runtime.Callers(1, pcs)
33 for _, pc := range pcs[:total] {
/third_party/boost/libs/proto/test/
Dmem_ptr.cpp167 S const *pcs = &s; in test_ptrs_transform() local
168 assert_result_type<int const &>(test1(pcs)); in test_ptrs_transform()
169 int const &s_x1 = evaluator()(test1(pcs)); in test_ptrs_transform()
215 S const *pcs = &s; in test_ptrs_context() local
216 assert_result_type<int const &>(test1(pcs)); in test_ptrs_context()
217 int const &s_x1 = proto::eval(test1(pcs), ctx); in test_ptrs_context()
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/
Dstacktrace.h187 extern void SetStackUnwinder(int (*unwinder)(void** pcs, int* sizes,
217 extern int DefaultStackUnwinder(void** pcs, int* sizes, int max_depth,
Dstacktrace.cc118 int DefaultStackUnwinder(void** pcs, int* sizes, int depth, int skip, in DefaultStackUnwinder() argument
136 int n = (*f)(pcs, sizes, depth, skip, uc, min_dropped_frames); in DefaultStackUnwinder()
/third_party/abseil-cpp/absl/debugging/
Dstacktrace.h187 extern void SetStackUnwinder(int (*unwinder)(void** pcs, int* sizes,
217 extern int DefaultStackUnwinder(void** pcs, int* sizes, int max_depth,
Dstacktrace.cc116 int DefaultStackUnwinder(void** pcs, int* sizes, int depth, int skip, in DefaultStackUnwinder() argument
134 int n = (*f)(pcs, sizes, depth, skip, uc, min_dropped_frames); in DefaultStackUnwinder()
/third_party/flutter/skia/include/third_party/skcms/
Dskcms.h94 uint32_t pcs; member
285 p->pcs = skcms_Signature_XYZ; in skcms_Init()
/third_party/flutter/skia/include/third_party/vulkan/vulkan/
Dvk_platform.h61 #define VKAPI_ATTR __attribute__((pcs("aapcs-vfp")))
/third_party/flutter/skia/third_party/externals/dawn/third_party/khronos/vulkan/
Dvk_platform.h61 #define VKAPI_ATTR __attribute__((pcs("aapcs-vfp")))
/third_party/skia/include/third_party/vulkan/vulkan/
Dvk_platform.h51 #define VKAPI_ATTR __attribute__((pcs("aapcs-vfp")))
/third_party/skia/third_party/externals/dawn/third_party/khronos/vulkan/
Dvk_platform.h51 #define VKAPI_ATTR __attribute__((pcs("aapcs-vfp")))
/third_party/skia/third_party/externals/swiftshader/include/vulkan/
Dvk_platform.h51 #define VKAPI_ATTR __attribute__((pcs("aapcs-vfp")))
/third_party/flutter/glfw/deps/vulkan/
Dvk_platform.h61 #define VKAPI_ATTR __attribute__((pcs("aapcs-vfp")))
/third_party/skia/include/third_party/skcms/
Dskcms.h161 uint32_t pcs; member
375 p->pcs = skcms_Signature_XYZ; in skcms_Init()
/third_party/skia/third_party/externals/dng_sdk/source/
Ddng_camera_profile.cpp572 dng_vector pcs = PCStoXYZ (); in ValidForwardMatrix() local
574 if (Abs_real64 (xyz [0] - pcs [0]) > kThreshold || in ValidForwardMatrix()
575 Abs_real64 (xyz [1] - pcs [1]) > kThreshold || in ValidForwardMatrix()
576 Abs_real64 (xyz [2] - pcs [2]) > kThreshold) in ValidForwardMatrix()
Ddng_shared.cpp2958 dng_xy_coord pcs = PCStoXY (); in PostParse() local
2965 if (Abs_real64 (fAsShotWhiteXY.x - pcs.x) > 0.01 || in PostParse()
2966 Abs_real64 (fAsShotWhiteXY.y - pcs.y) > 0.01) in PostParse()
2977 fAsShotWhiteXY = pcs; in PostParse()
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/
Dmutex.cc426 void *pcs[40]; in PostSynchEvent() local
427 int n = absl::GetStackTrace(pcs, ABSL_ARRAYSIZE(pcs), 1); in PostSynchEvent()
430 char buffer[ABSL_ARRAYSIZE(pcs) * 24]; in PostSynchEvent()
433 pos += snprintf(&buffer[pos], sizeof (buffer) - pos, " %p", pcs[i]); in PostSynchEvent()
1270 static char *StackString(void **pcs, int n, char *buf, int maxlen, in StackString() argument
1277 if (!symbolizer(pcs[i], sym, kSymLen)) { in StackString()
1282 pcs[i], sym); in StackString()
1284 snprintf(buf + len, maxlen - len, " %p", pcs[i]); in StackString()
1292 void *pcs[40]; in CurrentStackString() local
1293 return StackString(pcs, absl::GetStackTrace(pcs, ABSL_ARRAYSIZE(pcs), 2), buf, in CurrentStackString()
/third_party/abseil-cpp/absl/synchronization/
Dmutex.cc415 void *pcs[40]; in PostSynchEvent() local
416 int n = absl::GetStackTrace(pcs, ABSL_ARRAYSIZE(pcs), 1); in PostSynchEvent()
419 char buffer[ABSL_ARRAYSIZE(pcs) * 24]; in PostSynchEvent()
422 pos += snprintf(&buffer[pos], sizeof (buffer) - pos, " %p", pcs[i]); in PostSynchEvent()
1261 static char *StackString(void **pcs, int n, char *buf, int maxlen, in StackString() argument
1268 if (!symbolizer(pcs[i], sym, kSymLen)) { in StackString()
1273 pcs[i], sym); in StackString()
1275 snprintf(buf + len, maxlen - len, " %p", pcs[i]); in StackString()
1283 void *pcs[40]; in CurrentStackString() local
1284 return StackString(pcs, absl::GetStackTrace(pcs, ABSL_ARRAYSIZE(pcs), 2), buf, in CurrentStackString()
/third_party/uboot/u-boot-2020.01/drivers/usb/cdns3/
Dgadget.c285 cdns3_ep_inc_trb(&priv_ep->enqueue, &priv_ep->pcs, priv_ep->num_trbs); in cdns3_ep_inc_enq()
785 priv_ep->wa1_cycle_bit = priv_ep->pcs ? TRB_CYCLE : 0; in cdns3_wa1_update_guard()
827 int pcs; in cdns3_ep_run_transfer() local
880 link_trb->control = ((priv_ep->pcs) ? TRB_CYCLE : 0) | in cdns3_ep_run_transfer()
888 control = priv_ep->pcs ? 0 : TRB_CYCLE; in cdns3_ep_run_transfer()
911 pcs = priv_ep->pcs ? TRB_CYCLE : 0; in cdns3_ep_run_transfer()
918 control |= pcs; in cdns3_ep_run_transfer()
925 control |= pcs | TRB_IOC | TRB_ISP; in cdns3_ep_run_transfer()
1858 priv_ep->pcs = !!EP_STS_CCS(reg); in cdns3_gadget_ep_enable()
Ddebug.h138 priv_ep->free_trbs, priv_ep->ccs, priv_ep->pcs); in cdns3_dbg_ring()
/third_party/mingw-w64/mingw-w64-headers/include/
Dthreadpoolapiset.h33 … WINAPI LeaveCriticalSectionWhenCallbackReturns (PTP_CALLBACK_INSTANCE pci, PCRITICAL_SECTION pcs);
Dshdeprecated.h590 virtual HRESULT WINAPI OnCreate(struct tagCREATESTRUCTW *pcs) = 0;
689 HRESULT (WINAPI *OnCreate)(IBrowserService2 *This,struct tagCREATESTRUCTW *pcs);
790 #define IBrowserService2_OnCreate(This,pcs) (This)->lpVtbl->OnCreate(This,pcs) argument
858 …RESULT WINAPI IBrowserService2_OnCreate_Proxy(IBrowserService2 *This,struct tagCREATESTRUCTW *pcs);
1029 HRESULT (WINAPI *OnCreate)(IBrowserService3 *This,struct tagCREATESTRUCTW *pcs);
1132 #define IBrowserService3_OnCreate(This,pcs) (This)->lpVtbl->OnCreate(This,pcs) argument
/third_party/flutter/skia/third_party/skcms/
Dskcms.cc173 uint8_t pcs [ 4]; member
886 profile->pcs = read_big_u32(header->pcs); in skcms_Parse()
921 if (profile->pcs != skcms_Signature_XYZ && profile->pcs != skcms_Signature_Lab) { in skcms_Parse()
925 bool pcs_is_xyz = profile->pcs == skcms_Signature_XYZ; in skcms_Parse()
2220 if (srcProfile->pcs == skcms_Signature_Lab) { in skcms_TransformWithPalette()
/third_party/skia/third_party/skcms/
Dskcms.cc344 uint8_t pcs [ 4]; member
1222 profile->pcs = read_big_u32(header->pcs); in skcms_ParseWithA2BPriority()
1257 if (profile->pcs != skcms_Signature_XYZ && profile->pcs != skcms_Signature_Lab) { in skcms_ParseWithA2BPriority()
1261 bool pcs_is_xyz = profile->pcs == skcms_Signature_XYZ; in skcms_ParseWithA2BPriority()
2746 if (srcProfile->pcs == skcms_Signature_Lab) { in skcms_TransformWithPalette()
2772 if (dstProfile->pcs == skcms_Signature_Lab) { in skcms_TransformWithPalette()

12